Skip to content

Commit

Permalink
Merge branch 'master' into revert/context-glob
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed Apr 13, 2022
2 parents 70b8454 + aa834be commit fc0afb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aws-cdk/lib/notices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as https from 'https';
import * as path from 'path';
import * as fs from 'fs-extra';
import * as semver from 'semver';
import { debug, print } from './logging';
import { debug, print, trace } from './logging';
import { flatMap } from './util';
import { cdkCacheDir } from './util/directories';
import { versionNumber } from './version';
Expand Down Expand Up @@ -323,7 +323,7 @@ function loadTree(outdir: string) {
try {
return fs.readJSONSync(path.join(outdir, 'tree.json'));
} catch (e) {
debug(`Failed to get tree.json file: ${e}`);
trace(`Failed to get tree.json file: ${e}. Proceeding with empty tree.`);
return {};
}
}
Expand Down

0 comments on commit fc0afb6

Please sign in to comment.