summaryrefslogtreecommitdiff
path: root/toxcore/logger.c
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2015-04-09 02:43:13 +0200
committermannol <eniz_vukovic@hotmail.com>2015-04-09 02:43:13 +0200
commit4fa31d14cf53dd54b182508df31b5524b1f24cb6 (patch)
tree13b41abf8698f87307be2e6e8f7b78ce033af659 /toxcore/logger.c
parent9c003c9dd215d5f6bb2c1a0fbdc2c0f7fd9def7c (diff)
Make it possible to decode mono audio with stereo decoder
Diffstat (limited to 'toxcore/logger.c')
-rw-r--r--toxcore/logger.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/toxcore/logger.c b/toxcore/logger.c
index e8aef7e0..fc6a989a 100644
--- a/toxcore/logger.c
+++ b/toxcore/logger.c
@@ -200,12 +200,12 @@ void logger_write (Logger *log, LOG_LEVEL level, const char *file, int line, con
200#endif 200#endif
201 201
202 static const char *logger_format = 202 static const char *logger_format =
203 "%s " /* Logger id string */ 203 "%s " /* Logger id string */
204 "%-16s" /* Time string of format: %m:%d %H:%M:%S */ 204 "%-16s" /* Time string of format: %m:%d %H:%M:%S */
205 "%u " /* Thread id */ 205 "%-12u " /* Thread id */
206 "%-5s " /* Logger lever string */ 206 "%-5s " /* Logger lever string */
207 "%-20s " /* File:line string */ 207 "%-20s " /* File:line string */
208 "- %s" /* Output message */ 208 "- %s" /* Output message */
209 WIN_CR "\n"; /* Every new print new line */ 209 WIN_CR "\n"; /* Every new print new line */
210 210
211 211