Skip to content

Commit

Permalink
fix: do not expose authToken
Browse files Browse the repository at this point in the history
  • Loading branch information
skamarakas committed Sep 1, 2023
1 parent 6cbec78 commit 1907768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/MonitoringService.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Logger } from './Logger';
import type { Logger } from './Logger';
import { ConsoleLogger } from './ConsoleLogger';

export interface RemoteMonitoringServiceParams {
Expand Down Expand Up @@ -43,7 +43,7 @@ export abstract class MonitoringService {
serviceName - ${serviceName}
serviceVersion - ${serviceVersion}
serviceEnv - ${serviceEnv}
authToken - ${authToken}
authToken - ${authToken ? '********' : undefined}
`);
}
}
Expand Down

0 comments on commit 1907768

Please sign in to comment.