-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add loggers configuration #278
Conversation
@@ -63,6 +63,7 @@ | |||
val defaultDefaultSchemaName: Option[String] = None | |||
val defaultSchemaNames: Option[NonEmptyList[String]] = None | |||
val defaultLockRetryCount: Int = 50 | |||
val defaultLoggers: List[LoggerType] = List(LoggerType.Auto) |
Check notice
Code scanning / Scalastyle (reported by Codacy)
Field name does not match the regular expression '^[A-Z][A-Za-z0-9]*$'. Note
@@ -0,0 +1,30 @@ | |||
package fly4s.data |
Check notice
Code scanning / Scalastyle (reported by Codacy)
File must not end with newline character. Note
case "slf4j" => Slf4j | ||
case "log4j2" => Log4j2 | ||
case "apache-commons" => ApacheCommons | ||
case custom => Custom(custom) |
Check notice
Code scanning / Scalastyle (reported by Codacy)
Lowercase pattern match (surround with ``, or add : Any). Note
@@ -0,0 +1,30 @@ | |||
package fly4s.data |
Check notice
Code scanning / Scalastyle (reported by Codacy)
Header does not match expected text. Note
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #278 +/- ##
==========================================
- Coverage 79.31% 78.62% -0.69%
==========================================
Files 12 13 +1
Lines 406 421 +15
Branches 3 4 +1
==========================================
+ Hits 322 331 +9
- Misses 84 90 +6 ☔ View full report in Codecov by Sentry. |
Resolve #273