mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
Fix verbose logging
This commit is contained in:
parent
261aca9701
commit
8086f6e7d7
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ export function createRamaProxy(ramaPath) {
|
|||
async function startRama(ramaPath, dataFolder) {
|
||||
const startTime = Date.now();
|
||||
const args = ["--secrets", "memory", "--data", dataFolder];
|
||||
const stdio = LOGGING_VERBOSE ? "inherit" : "pipe";
|
||||
const stdio = getLoggingLevel() === LOGGING_VERBOSE ? "inherit" : "pipe";
|
||||
const process = spawn(ramaPath, args, { stdio: stdio });
|
||||
|
||||
// wait for the proxy process to start (poll for proxy.addr.txt file)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue