Skip to content

Commit

Permalink
bootstrap: stub logger
Browse files Browse the repository at this point in the history
  • Loading branch information
CanadaHonk authored Nov 13, 2024
1 parent f92ee8c commit e2917d4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ const startCore = () => {
isInitialized: () => true,
getGlobalSentry: () => null,
metadata: {}
},
logger: {
initializeLogging: () => {},
ipcMainRendererLogger: () => {}
}
});
};
Expand Down Expand Up @@ -136,4 +140,4 @@ module.exports = () => {
if (!app.requestSingleInstanceLock() && !(process.argv?.includes?.('--multi-instance') || oaConfig.multiInstance === true)) return app.quit();

app.whenReady().then(startUpdate);
};
};

0 comments on commit e2917d4

Please sign in to comment.