Write errors to stderr

snapshot
Jonas Letzbor 2022-04-10 09:36:57 +02:00
parent 17371561dd
commit f54ea5bdd6
2 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,8 @@ plugins {
// Set version of programm //
version = "1.0.1"
def version = "1.0.1"
version = "1.0.2"
def version = "1.0.2"
group = "de.rpjosh"

View File

@ -33,7 +33,7 @@ public class Logger {
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);
}