Remove console.log

This commit is contained in:
Nayam Amarshe
2024-12-20 09:08:44 +05:30
parent 174260fc5d
commit 4a3c41933b

View File

@@ -36,8 +36,6 @@ app.on("ready", async () => {
protocol.registerFileProtocol("public", (request, callback) => {
const filePath = decodeURI(request.url.replace("public:///", ""));
const asarPath = path.join(app.getAppPath(), "renderer", "out", filePath);
console.log("🚀 => asarPath:", asarPath);
callback(asarPath);
});
logit("🚃 App Path: ", app.getAppPath());