Skip to content

Commit

Permalink
Initialize ToolingLog with write to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-tavares committed Jul 20, 2023
1 parent 857912f commit 2beaa78
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -57,7 +57,7 @@ export const createRuntimeServices = async ({
fleetServerUrl = 'https://localhost:8220',
username: _username,
password: _password,
log = new ToolingLog(),
log = new ToolingLog({ level: 'info', writeTo: process.stdout }),
asSuperuser = false,
}: CreateRuntimeServicesOptions): Promise<RuntimeServices> => {
let username = _username;
Expand Down

0 comments on commit 2beaa78

Please sign in to comment.