aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSchuyler Eldridge2020-01-10 15:37:43 -0500
committermergify[bot]2020-01-10 20:37:43 +0000
commit9102d147eca32d5ac99abba2c2affd8e9fe8492b (patch)
tree4d1fb194b2c7ab5fa4049600055cc8c93ccf3959 /src
parent2dc005d500ffcccef5def5938dc7ead7c68644b3 (diff)
Change default LogLevel to Warn (#1305)
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src')
-rw-r--r--src/main/scala/logger/LoggerAnnotations.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/logger/LoggerAnnotations.scala b/src/main/scala/logger/LoggerAnnotations.scala
index 323b46e5..f4dc6b38 100644
--- a/src/main/scala/logger/LoggerAnnotations.scala
+++ b/src/main/scala/logger/LoggerAnnotations.scala
@@ -14,7 +14,7 @@ sealed trait LoggerOption { this: Annotation => }
* - if unset, a [[LogLevelAnnotation]] with the default log level will be emitted
* @param level the level of logging
*/
-case class LogLevelAnnotation(globalLogLevel: LogLevel.Value = LogLevel.None) extends NoTargetAnnotation with LoggerOption
+case class LogLevelAnnotation(globalLogLevel: LogLevel.Value = LogLevel.Warn) extends NoTargetAnnotation with LoggerOption
object LogLevelAnnotation extends HasShellOptions {