diff --git a/pom.xml b/pom.xml index 7161c192..70fe30c2 100644 --- a/pom.xml +++ b/pom.xml @@ -14,7 +14,7 @@ com.osiris.autoplug.client autoplug-client - 7.5.12 + 7.5.13 jar AutoPlug-Client diff --git a/src/main/java/com/osiris/autoplug/client/tasks/scheduler/RestartJob.java b/src/main/java/com/osiris/autoplug/client/tasks/scheduler/RestartJob.java index f19fd6cc..73e05bab 100644 --- a/src/main/java/com/osiris/autoplug/client/tasks/scheduler/RestartJob.java +++ b/src/main/java/com/osiris/autoplug/client/tasks/scheduler/RestartJob.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2023 Osiris-Team. + * Copyright (c) 2021-2024 Osiris-Team. * All rights reserved. * * This software is copyrighted work, licensed under the terms @@ -51,7 +51,6 @@ public void execute(JobExecutionContext context) throws JobExecutionException { for (YamlSection m : modules) { if (Integer.parseInt(m.getLastKey()) == i) { - AL.debug(this.getClass(), "Executing command(s): " + m.getValues().toString()); for (String command : m.asStringList()) { try { if (command == null)