Run metrics with debug false to reduce log spam (#2027)

This commit is contained in:
Sam Freund
2025-08-08 08:14:20 -05:00
committed by GitHub
parent da715244cb
commit 0ea108e17f

View File

@@ -280,7 +280,7 @@ public class MetricsManager {
public synchronized String execute(String command) {
try {
runCommand.executeBashCommand(command);
runCommand.executeBashCommand(command, true, false);
return runCommand.getOutput();
} catch (Exception e) {
StringWriter sw = new StringWriter();