From f80dc771c4bde5edb5591638c310e01ff48e34df Mon Sep 17 00:00:00 2001 From: Andreas Greimel Date: Tue, 28 Jun 2022 16:02:07 +0200 Subject: [PATCH] Disable chia-agent debug logging --- electron/main/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/electron/main/index.ts b/electron/main/index.ts index 51e3be1..61bfa73 100644 --- a/electron/main/index.ts +++ b/electron/main/index.ts @@ -1,14 +1,14 @@ import { app, BrowserWindow, ipcMain, shell } from 'electron'; import { release } from 'os'; +import * as path from 'path'; import { join } from 'path'; -import { chiaRoot, getConfig, getConnectionInfoFromConfig, RPCAgent, setLogLevel, TConfig } from 'chia-agent'; +import { chiaRoot, getConfig, getConnectionInfoFromConfig, RPCAgent, TConfig } from 'chia-agent'; import Store from 'electron-store'; import * as fs from 'fs'; -import * as path from 'path'; -import { Coin, SmartCoin } from 'greenwebjs'; +import { SmartCoin } from 'greenwebjs'; import { bech32m } from 'bech32'; -setLogLevel('debug'); +// setLogLevel('debug'); const store = new Store<{ CHIA_ROOT: string }>({ defaults: { CHIA_ROOT: chiaRoot } });