Merge pull request #26028 from chbatey/master-211-broken
Fix 2.11 compilation
This commit is contained in:
commit
3d3a636e9a
1 changed files with 2 additions and 5 deletions
|
|
@ -50,11 +50,8 @@ object CapturedLogEvent {
|
|||
|
||||
def apply(
|
||||
logLevel: LogLevel,
|
||||
message: String,
|
||||
cause: Option[Throwable] = None,
|
||||
marker: Option[LogMarker] = None,
|
||||
mdc: Map[String, Any] = Map.empty): CapturedLogEvent = {
|
||||
new CapturedLogEvent(logLevel, message, cause, marker, mdc)
|
||||
message: String): CapturedLogEvent = {
|
||||
CapturedLogEvent(logLevel, message, None, None, Map.empty[String, Any])
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue