We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2aa4c commit 353b544Copy full SHA for 353b544
base/services/audiosrv/debug.c
@@ -4,10 +4,14 @@
4
5
#include <stdio.h>
6
7
+// FIXME: Disabled to work around CORE-16814 (and CORE-16912).
8
+// #define ENABLE_LOGMSG_FILE
9
+
10
void logmsg(char* string, ...)
11
{
12
va_list args;
13
14
+#ifdef ENABLE_LOGMSG_FILE
15
FILE* debug_file = fopen("c:\\audiosrv-debug.txt", "a");
16
17
if (debug_file)
@@ -18,6 +22,7 @@ void logmsg(char* string, ...)
18
22
fclose(debug_file);
19
23
}
20
24
else
25
+#endif
21
26
27
char buf[256];
28
va_start(args, string);
0 commit comments