Skip to content

Commit 59e26f6

Browse files
devversionandrewseguin
authored andcommitted
build: do not run dgeni with "info" log level. (#15512)
With Bazel it's uncommon to print anything except failures. Currently the Dgeni logic that runs as part of our Bazel build is the only action that prints something for a successful build. In order to make our Bazel output clean, we lower the log level. For debugging, it's still easy to modify the log-level.
1 parent fe6629a commit 59e26f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/dgeni/docs-package.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ apiDocsPackage.processor(new EntryPointGrouper());
5151

5252
// Configure the log level of the API docs dgeni package.
5353
apiDocsPackage.config(function(log: any) {
54-
return log.level = 'info';
54+
return log.level = 'warning';
5555
});
5656

5757
// Configure the processor for reading files from the file system.

0 commit comments

Comments
 (0)