We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d1725 commit d5d0322Copy full SHA for d5d0322
lib/src/code_generation/logger/stacked_logger_annotations.dart
@@ -11,9 +11,16 @@ class StackedLogger {
11
/// Default is true
12
final bool disableReleaseConsoleOutput;
13
14
+ /// When set to true, console logs will not be printed while running unit
15
+ /// tests or integration tests
16
+ ///
17
+ /// Default is false
18
+ final bool disableTestsConsoleOutput;
19
+
20
const StackedLogger({
21
this.loggerOutputs = const [],
22
this.logHelperName = 'getLogger',
23
this.disableReleaseConsoleOutput = true,
24
+ this.disableTestsConsoleOutput = false,
25
});
26
}
0 commit comments