Skip to content

Commit

Permalink
bootstrapper - better logs
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Jun 25, 2024
1 parent 4245e2b commit 54a0776
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/core/co_initialize/co_stub.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function createWebSocket(url) {
return new Promise((resolve, reject) => {
let socket = new WebSocket(url);
socket.addEventListener('open', () => {
console.log('WebSocket connected');
console.log('%c Millennium ', 'background: black; color: white', "Successfully connected to IPC server.");
resolve(socket);
});
socket.addEventListener('error', (error) => {
Expand Down Expand Up @@ -51,9 +51,8 @@ const InjectLegacyReactGlobals = () => {
for (let i of Object.keys(initReq.m)) {
try {
bufferWebpackCache[i] = initReq(i);
} catch (e) {
console.debug("[Millennium:Webpack]: Ignoring require error for module", i, e);
}
}
catch (e) { }
}
const findModule = (filter) => {
Expand Down

0 comments on commit 54a0776

Please sign in to comment.