From 024a401b4240ccdb9608f21c18af9b76307fc5f0 Mon Sep 17 00:00:00 2001 From: marc barbier Date: Thu, 8 Jul 2021 17:16:14 +0200 Subject: [PATCH] verbose --- ModsListDownloader/src/downloader/Log.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModsListDownloader/src/downloader/Log.java b/ModsListDownloader/src/downloader/Log.java index f5c3b32..752829a 100644 --- a/ModsListDownloader/src/downloader/Log.java +++ b/ModsListDownloader/src/downloader/Log.java @@ -8,6 +8,6 @@ public class Log { } public static void i(String who, String msg) { - System.out.println(String.valueOf(who) + " : " + msg); + if(Main.verbose)System.out.println(String.valueOf(who) + " : " + msg); } }