From 9d9ae4095373de6a56070857aed7a64356f04cc6 Mon Sep 17 00:00:00 2001 From: nick Date: Wed, 30 Oct 2013 16:40:32 +0000 Subject: [PATCH] Increase loglevel of some allocation map messages --- src/ioutil.c | 3 +-- src/mirror.c | 3 +-- src/serve.c | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/ioutil.c b/src/ioutil.c index 14eef32..08e688e 100644 --- a/src/ioutil.c +++ b/src/ioutil.c @@ -71,7 +71,7 @@ int build_allocation_map(struct bitset * allocation_map, int fd) } } - debug("Successfully built allocation map"); + info("Successfully built allocation map"); return 1; } @@ -347,4 +347,3 @@ ssize_t iobuf_write( int fd, struct iobuf *iobuf ) return count; } - diff --git a/src/mirror.c b/src/mirror.c index bea55db..3a7d1fa 100644 --- a/src/mirror.c +++ b/src/mirror.c @@ -705,7 +705,7 @@ void mirror_begin_cb( struct ev_loop *loop, ev_timer *w, int revents ) } if ( ctrl->serve->allocation_map_built || ctrl->serve->allocation_map_not_built ) { - debug( "allocation map builder is finished, beginning migration" ); + info( "allocation map builder is finished, beginning migration" ); /* Start by writing xfer 0 to the listener */ ev_io_start( loop, &ctrl->write_watcher ); /* We want to timeout during the first write as well as subsequent ones */ @@ -1045,4 +1045,3 @@ void * mirror_super_runner( void * serve_uncast ) return NULL; } - diff --git a/src/serve.c b/src/serve.c index cef1b67..93e6014 100644 --- a/src/serve.c +++ b/src/serve.c @@ -954,4 +954,3 @@ int do_serve( struct server* params, struct self_pipe * open_signal ) return success; } -