File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,14 @@ libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.10.6"
47
47
scribe.info(" Yes, it's that simple!" )
48
48
```
49
49
50
+ ### SBT Tip
51
+ Using the default logger in Scribe supports auto-line wrapping, but in SBT, the ` [info] ` prefixes cause that to get
52
+ messed up. It's recommended to set:
53
+ ``` sbt
54
+ outputStrategy := Some (StdoutOutput )
55
+ ```
56
+ This will disable the ` [info] ` and ` [error] ` prefixes so logging looks correct when running your application within SBT.
57
+
50
58
## Why Another Logging Framework
51
59
52
60
Yes, we know there are too many Java logging frameworks to count, and a large number of decent logging frameworks in
Original file line number Diff line number Diff line change @@ -47,6 +47,14 @@ libraryDependencies += "com.outr" %% "scribe-slf4j" % "@VERSION@"
47
47
scribe.info(" Yes, it's that simple!" )
48
48
```
49
49
50
+ ### SBT Tip
51
+ Using the default logger in Scribe supports auto-line wrapping, but in SBT, the ` [info] ` prefixes cause that to get
52
+ messed up. It's recommended to set:
53
+ ``` sbt
54
+ outputStrategy := Some (StdoutOutput )
55
+ ```
56
+ This will disable the ` [info] ` and ` [error] ` prefixes so logging looks correct when running your application within SBT.
57
+
50
58
## Why Another Logging Framework
51
59
52
60
Yes, we know there are too many Java logging frameworks to count, and a large number of decent logging frameworks in
You can’t perform that action at this time.
0 commit comments