summaryrefslogtreecommitdiffhomepage
path: root/gui/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/main')
-rw-r--r--gui/src/main/daemon-rpc.ts2
-rw-r--r--gui/src/main/gui-settings.ts2
-rw-r--r--gui/src/main/index.ts4
3 files changed, 4 insertions, 4 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts
index 4dbae23630..c12ee53eff 100644
--- a/gui/src/main/daemon-rpc.ts
+++ b/gui/src/main/daemon-rpc.ts
@@ -590,7 +590,7 @@ export class DaemonRpc {
private connectivityChangeCallback(timeoutErr?: Error) {
const channel = this.client.getChannel();
const currentState = channel?.getConnectivityState(true);
- log.debug(`GRPC Channel connectivity state changed to ${currentState}`);
+ log.verbose(`GRPC Channel connectivity state changed to ${currentState}`);
if (channel) {
if (timeoutErr) {
this.setChannelCallback(currentState);
diff --git a/gui/src/main/gui-settings.ts b/gui/src/main/gui-settings.ts
index 940dd7215c..d5432e2321 100644
--- a/gui/src/main/gui-settings.ts
+++ b/gui/src/main/gui-settings.ts
@@ -106,7 +106,7 @@ export default class GuiSettings {
const error = e as Error & { code?: string };
// Read settings if the file exists, otherwise write the default settings to it.
if (error.code === 'ENOENT') {
- log.debug('Creating gui-settings file and writing the default settings to it');
+ log.verbose('Creating gui-settings file and writing the default settings to it');
this.store();
} else {
log.error(`Failed to read GUI settings file: ${error}`);
diff --git a/gui/src/main/index.ts b/gui/src/main/index.ts
index 2924408ee6..c707f29cf6 100644
--- a/gui/src/main/index.ts
+++ b/gui/src/main/index.ts
@@ -270,7 +270,7 @@ class ApplicationMain {
this.initLogging();
- log.debug(`Chromium sandbox is ${SANDBOX_DISABLED ? 'disabled' : 'enabled'}`);
+ log.verbose(`Chromium sandbox is ${SANDBOX_DISABLED ? 'disabled' : 'enabled'}`);
if (!SANDBOX_DISABLED) {
app.enableSandbox();
}
@@ -1351,7 +1351,7 @@ class ApplicationMain {
);
reject(error.message);
} else {
- log.debug(`Problem report was written to ${reportPath}`);
+ log.verbose(`Problem report was written to ${reportPath}`);
resolve(id);
}
});