Skip to content

Commit

Permalink
Remove GLOBAL logs tag
Browse files Browse the repository at this point in the history
  • Loading branch information
asb2m10 committed Mar 9, 2025
1 parent 3bd708d commit 733695d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/SCProcess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ int scprocess_scprintf(const char *fmt, va_list ap) {
char buf[4096];
int p = vsnprintf(buf, sizeof(buf), fmt, ap);
printf(buf);
juce::Logger::writeToLog(juce::String("[GLOBAL] ") + juce::String(buf));
juce::Logger::writeToLog(juce::String(buf));
return p;
}

Expand Down

0 comments on commit 733695d

Please sign in to comment.