You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mantis-server/mantis-server-worker/src/main/java/io/mantisrx/server/worker/ExecuteStageRequestService.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ public Observable<ExecutionDetails> call(TrackedExecuteStageRequest executeReque
94
94
95
95
cl = userCodeClassLoader.asClassLoader();
96
96
if (jobProviderClass.isPresent()) {
97
-
logger.info("loading job main class " +jobProviderClass.get());
97
+
logger.info("loading job main class {}",jobProviderClass.get());
Copy file name to clipboardExpand all lines: mantis-server/mantis-server-worker/src/main/java/io/mantisrx/server/worker/ResourceUsagePayloadSetter.java
Copy file name to clipboardExpand all lines: mantis-server/mantis-server-worker/src/main/java/io/mantisrx/server/worker/VirtualMachineWorkerServiceLocalImpl.java
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -129,8 +129,7 @@ public void onError(Throwable e) {
129
129
130
130
@Override
131
131
publicvoidonNext(List<Boolean> booleans) {
132
-
logger.info("onNext called for request failure handler with items: " +
133
-
((booleans == null) ? "-1" : booleans.size()));
132
+
logger.info("onNext called for request failure handler with items: {}", (booleans == null) ? "-1" : booleans.size());
Copy file name to clipboardExpand all lines: mantis-server/mantis-server-worker/src/main/java/io/mantisrx/server/worker/WorkerExecutionOperationsNetworkStage.java
0 commit comments