Skip to content

Commit

Permalink
FDP-94: Update logging
Browse files Browse the repository at this point in the history
Signed-off-by: Jasper Kamerling <[email protected]>
  • Loading branch information
jasperkamerling committed Nov 16, 2023
1 parent 71a9c7c commit 8b1bb99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ProxyServerRequestMessage(
fun createInstanceFromString(string: String): ProxyServerRequestMessage {
val split = string.split(SEPARATOR)
val numTokens = split.size
LOGGER.debug("split.length: {}", numTokens)
LOGGER.debug { "split.length: ${numTokens}" }
if (numTokens < 4 || numTokens > 5) {
throw ProxyMessageException(
"Invalid number of tokens, not trying to create ProxyServerRequestMessage."
Expand Down

0 comments on commit 8b1bb99

Please sign in to comment.