mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-19 01:04:20 +00:00
Windows: Avoid logging ASIO errors to the console twice
This commit is contained in:
parent
da2cd2e619
commit
306e793895
1 changed files with 3 additions and 1 deletions
|
|
@ -43,7 +43,9 @@ namespace ASIODebugging
|
|||
{
|
||||
message = "ASIO: " + message;
|
||||
DBG (message);
|
||||
Logger::writeToLog (message);
|
||||
|
||||
if (Logger::getCurrentLogger() != nullptr)
|
||||
Logger::writeToLog (message);
|
||||
}
|
||||
|
||||
static void logError (const String& context, long error)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue