We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd567ee commit bc6c836Copy full SHA for bc6c836
src/main/kotlin/spp/protocol/instrument/LiveLog.kt
@@ -47,7 +47,7 @@ data class LiveLog(
47
48
constructor(json: JsonObject) : this(
49
logFormat = json.getString("logFormat"),
50
- logArguments = json.getJsonArray("logArguments").map { it.toString() },
+ logArguments = json.getJsonArray("logArguments")?.map { it.toString() } ?: emptyList(),
51
location = LiveSourceLocation(json.getJsonObject("location")),
52
condition = json.getString("condition"),
53
expiresAt = json.getLong("expiresAt"),
0 commit comments