fix: Use info log level instead trace [Fixes DXJ-457] (#328)

Use info log level instead trace
This commit is contained in:
Akim 2023-08-25 23:42:56 +07:00 committed by GitHub
parent f2e5beeca5
commit 477c6f0c15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ export class MarineBackgroundRunner implements IMarineHost {
// The logging level is controlled by the environment variable passed to enable debug logs.
// We enable all possible log levels passing the control for exact printouts to the logger
const env = logLevelToEnv('trace');
const env = logLevelToEnv('info');
this.loggers.set(serviceId, marineLogger(serviceId));
await this.workerThread.createService(serviceModule, serviceId, env);
}