Merge pull request #26028 from chbatey/master-211-broken

Fix 2.11 compilation
This commit is contained in:
Patrik Nordwall 2018-12-03 16:02:23 +01:00 committed by GitHub
commit 3d3a636e9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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])
}
/**