Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
CapitaineJSparrow committed Oct 5, 2021
1 parent 5080730 commit 2200b14
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ app.commandLine.appendSwitch('ignore-certificate-errors', 'true');
const readStream = fs.createReadStream(zipPath).on('data', (chunk) => {
bytes += chunk.length;
const percentage = (bytes / size * 100).toFixed(2);
console.log(percentage);
event.reply('upload-percentage', percentage);
});

Expand Down
1 change: 0 additions & 1 deletion src/service/Ryujinx/shaders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ export const shareShader = async (
electron.ipcRenderer.send('shadersBuffer', shadersPath);

electron.ipcRenderer.on('upload-percentage', (_, percentage) => {
console.log(typeof percentage, percentage);
onUploadProgress(percentage);
})

Expand Down

0 comments on commit 2200b14

Please sign in to comment.