I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit f2e0aacb authored by idk's avatar idk
Browse files

use Arrays.toString to convert trimmed process args to application args in ShellService.

parent 3e8f8a2b
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ public class ShellService implements ClientApp {
String[] procArgs = trimArgs(args);
String process = procArgs.toString();
String process = Arrays.toString(procArgs);
if (_log.shouldLog(Log.DEBUG)) {
_log.debug("Process: " + process);
......@@ -112,6 +112,8 @@ public class ShellService implements ClientApp {
i++;
}
} else {
if (_log.shouldLog(Log.DEBUG))
_log.debug("Adding arg: " + args[i]);
newargs.add(args[i]);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment