diff --git a/src/main/services/logger.ts b/src/main/services/logger.ts index 95a399ea..eee85ddf 100644 --- a/src/main/services/logger.ts +++ b/src/main/services/logger.ts @@ -6,8 +6,8 @@ log.transports.file.resolvePathFn = ( _: log.PathVariables, message?: log.LogMessage | undefined ) => { - if (message?.scope === "python-instance") { - return path.join(logsPath, "pythoninstance.txt"); + if (message?.scope === "python-rpc") { + return path.join(logsPath, "pythonrpc.txt"); } if (message?.scope == "achievements") { diff --git a/src/main/services/window-manager.ts b/src/main/services/window-manager.ts index 1d811989..93d06b56 100644 --- a/src/main/services/window-manager.ts +++ b/src/main/services/window-manager.ts @@ -49,7 +49,7 @@ export class WindowManager { minHeight: 540, backgroundColor: "#1c1c1c", titleBarStyle: process.platform === "linux" ? "default" : "hidden", - ...(process.platform === "linux" ? { icon } : {}), + icon, trafficLightPosition: { x: 16, y: 16 }, titleBarOverlay: { symbolColor: "#DADBE1",