summaryrefslogtreecommitdiff
path: root/src/log
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-22 09:48:15 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-22 09:48:15 +0100
commit2796fff1c2084d829208b1a0d54f30f7a4a2665b (patch)
tree879e5995bac246349210f009c1766a3fc9e29fe8 /src/log
parentc304cbce7ec53eed4fc5241a64a99db20cd9500d (diff)
downloadwolfbones-2796fff1c2084d829208b1a0d54f30f7a4a2665b.tar.gz
wolfbones-2796fff1c2084d829208b1a0d54f30f7a4a2665b.tar.bz2
removed more debug code in the W32 logger
Diffstat (limited to 'src/log')
-rw-r--r--src/log/log.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/log/log.c b/src/log/log.c
index 88e44e7..3939d41 100644
--- a/src/log/log.c
+++ b/src/log/log.c
@@ -603,7 +603,6 @@ static void map_placeholders_to_strings( char **msg_arr,
*/ break;
}
c++;
-printf( ">>> %d %s\n", field, msg_arr[field-1] );
}
}
}
@@ -751,7 +750,6 @@ void wolf_log( wolf_log_level_t level, int category_id, int message_id, const ch
int nof_placeholders = compute_nof_placeholders( format );
LPSTR *msg_arr = (LPSTR *)malloc( sizeof( LPCTSTR ) * nof_placeholders );
-printf( "placeholders: %d %s\n", nof_placeholders, format );
va_start( ap, format );
map_placeholders_to_strings( msg_arr, format, ap );
va_end( ap );