Skip to content

Commit

Permalink
Remove log.finest from source_gen. (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
matanlurey authored and natebosch committed Jan 22, 2018
1 parent 07218c6 commit 8ddf7ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.7.4+1

* Removed a `log.finest` with the output source of each generator. This allows
a verbose option (`-v`) for tools like bazel or build_runner to be much more
readable and debuggable. Files are emitted to disk for inspection in any
case.

## 0.7.4

* Added `typeNameOf`, which is a safe way to get the name of a `DartType`,
Expand Down
1 change: 0 additions & 1 deletion lib/src/builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ Stream<GeneratedOutput> _generate(LibraryElement library,
var createdUnit = await gen.generate(libraryReader, buildStep);

if (createdUnit != null && createdUnit.isNotEmpty) {
log.finest(() => 'Generated $createdUnit for ${buildStep.inputId}');
yield new GeneratedOutput(gen, createdUnit);
}
} catch (e, stack) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: source_gen
version: 0.7.4
version: 0.7.4+1
author: Dart Team <[email protected]>
description: Automated source code generation for Dart.
homepage: https://github.com/dart-lang/source_gen
Expand Down

0 comments on commit 8ddf7ee

Please sign in to comment.