diff --git a/diagnostics/OtherFunctions.py b/diagnostics/OtherFunctions.py index c3290a5..a7638a9 100644 --- a/diagnostics/OtherFunctions.py +++ b/diagnostics/OtherFunctions.py @@ -1,2 +1,4 @@ -def vprint(string, verbose): - print("[LOG (verbose)]", string) \ No newline at end of file +verbose = True +def log(string): + if(verbose): + print("[LOG (verbose)]", string)