Skip to content

Commit

Permalink
Disable chia-agent debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
greimela committed Jun 28, 2022
1 parent b1a4349 commit f80dc77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions electron/main/index.ts
Original file line number Diff line number Diff line change
@@ -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 } });

Expand Down

0 comments on commit f80dc77

Please sign in to comment.