Skip to content

Commit

Permalink
fix: wording
Browse files Browse the repository at this point in the history
  • Loading branch information
nickybondarenko committed Dec 2, 2024
1 parent dc59b7b commit 1ffe355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdk/src/Confidence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ export class Confidence implements EventSender, Trackable, FlagResolver {

private showLoggerLink(flag: string, context: Context) {
this.config.logger.info?.(
`[Resolve debug] https://app.confidence.spotify.com/flags/resolver-test?client-key=${
`See resolves for '${flag}' in Confidence: https://app.confidence.spotify.com/flags/resolver-test?client-key=${
this.config.clientSecret
}&flag=flags/${flag}&context=${encodeURIComponent(JSON.stringify(context))}`,
);
Expand Down Expand Up @@ -402,7 +402,7 @@ function defaultFetchImplementation(): typeof fetch {
function defaultLogger(): Logger {
try {
if (process.env.NODE_ENV === 'development') {
return Logger.withLevel(console, 'debug');
return Logger.withLevel(console, 'info');
}
} catch (e) {
// ignore
Expand Down

0 comments on commit 1ffe355

Please sign in to comment.