summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Rettberg2013-12-06 18:49:46 +0100
committerSimon Rettberg2013-12-06 18:49:46 +0100
commit290bec729e0b9f4aa2497121b3603dbabaef1c30 (patch)
treeb76039ca321b816f9d20ef02b06a0488b2a1441c /src
parent[SERVER] Fix free disk space check (diff)
downloaddnbd3-290bec729e0b9f4aa2497121b3603dbabaef1c30.tar.gz
dnbd3-290bec729e0b9f4aa2497121b3603dbabaef1c30.tar.xz
dnbd3-290bec729e0b9f4aa2497121b3603dbabaef1c30.zip
[SERVER] Remove annoying message about cache maps being saved
Diffstat (limited to 'src')
-rw-r--r--src/server/altservers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/altservers.c b/src/server/altservers.c
index e1a7544..9a74ef2 100644
--- a/src/server/altservers.c
+++ b/src/server/altservers.c
@@ -524,10 +524,10 @@ static void *altservers_main(void *data)
pthread_mutex_unlock( &pendingLockConsume );
}
// Save cache maps of all images if applicable
+ // TODO: Has nothing to do with alt servers really, maybe move somewhere else?
const time_t now = time( NULL );
if ( now > nextCacheMapSave ) {
nextCacheMapSave = now + SERVER_CACHE_MAP_SAVE_INTERVAL;
- printf( "[DEBUG] Saving cache maps...\n" );
image_saveAllCacheMaps();
}
}