Skip to content
marek edited this page Sep 1, 2025 · 1 revision

Logger

We are using electron-logger under the hood of our logging wrappers. Use src/electron/utils/logger.ts in the main process, in the Electron app. For logging inside React, use src/ui/utils/loggerUi.ts.

By default, they write logs to the following locations:

  • on Linux: ~/.config/{app name}/logs/main.log,
  • on macOS: ~/Library/Logs/{app name}/main.log,
  • on Windows: %USERPROFILE%\AppData\Roaming\{app name}\logs\main.log.

Clone this wiki locally