From 82c43ce3eaeb45341d53d68c88923252448f6902 Mon Sep 17 00:00:00 2001 From: N00MKRAD <61149547+n00mkrad@users.noreply.github.com> Date: Sun, 13 Oct 2024 14:22:01 +0200 Subject: [PATCH] Fix visible debug print --- CodeLegacy/NUtilsTemp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeLegacy/NUtilsTemp.cs b/CodeLegacy/NUtilsTemp.cs index 8c178dd..efd1d7a 100644 --- a/CodeLegacy/NUtilsTemp.cs +++ b/CodeLegacy/NUtilsTemp.cs @@ -76,7 +76,7 @@ namespace Flowframes CreateNoWindow = true, }; - Logger.Log($"{startInfo.FileName} {startInfo.Arguments}"); + Logger.Log($"{startInfo.FileName} {startInfo.Arguments}", hidden: true); using (Process process = new Process { StartInfo = startInfo }) {