Skip to content

Commit

Permalink
Merge branch 'main' into fix-max-backoff
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodewig authored Feb 5, 2025
2 parents 1a18360 + 49016eb commit 8b5fa7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/config/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import yargsParser from "yargs-parser";

import { container } from "../../config/container.mjs";
import { ValidationError } from "../errors.mjs";
import { redactedStringify } from "../formatting/redact.mjs";

export const validDefaultConfigNames = [
"fauna.config.yaml",
Expand Down Expand Up @@ -156,7 +157,7 @@ export function configParser(argvInput, path) {
validateConfig(profile, parsedProfile, parsedPath);

logger.debug(
`Applying config: ${JSON.stringify(parsedProfile, null, 4)}`,
`Applying config: ${redactedStringify(parsedProfile, null, 4)}`,
"config",
);

Expand Down

0 comments on commit 8b5fa7b

Please sign in to comment.