replace remaining printf()s with D?LOG

fixes #1252
This commit is contained in:
Michael Stapelberg
2014-06-08 21:56:14 +02:00
parent 030595a4eb
commit 617afc67a2
5 changed files with 18 additions and 18 deletions

View File

@ -260,7 +260,7 @@ char *store_restart_layout(void) {
return NULL;
}
if (n == 0) {
printf("write == 0?\n");
DLOG("write == 0?\n");
free(filename);
close(fd);
return NULL;
@ -271,7 +271,7 @@ char *store_restart_layout(void) {
close(fd);
if (length > 0) {
printf("layout: %.*s\n", (int)length, payload);
DLOG("layout: %.*s\n", (int)length, payload);
}
y(free);