Skip to content

Commit 5f2fa09

Browse files
committed
adding explicit newline characters in print statements
1 parent 1f616e6 commit 5f2fa09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

runtime/src/main/java/com/fnproject/fn/runtime/MethodFunctionInvoker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public void logFramer(FunctionRuntimeContext rctx, InputEvent evt) {
2929
if (valueSrc != "") {
3030
String id = evt.getHeaders().get(valueSrc).orElse("");
3131
if (id != "") {
32-
System.out.println(framer + "=" + id);
33-
System.err.println(framer + "=" + id);
32+
System.out.println("\n" + framer + "=" + id + "\n");
33+
System.err.println("\n" + framer + "=" + id + "\n");
3434
}
3535
}
3636
}

0 commit comments

Comments
 (0)