Write errors to stderr
parent
17371561dd
commit
f54ea5bdd6
|
@ -6,8 +6,8 @@ plugins {
|
||||||
|
|
||||||
// Set version of programm //
|
// Set version of programm //
|
||||||
|
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
def version = "1.0.1"
|
def version = "1.0.2"
|
||||||
|
|
||||||
group = "de.rpjosh"
|
group = "de.rpjosh"
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ public class Logger {
|
||||||
|
|
||||||
if (v.equals("w")) System.out.println("[W] " + commandLine);
|
if (v.equals("w")) System.out.println("[W] " + commandLine);
|
||||||
|
|
||||||
if (v.equals("e")) System.out.println("[E] " + commandLine);
|
if (v.equals("e")) System.err.println("[E] " + commandLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue