From: Sage Weil Date: Thu, 6 Nov 2008 22:11:13 +0000 (-0800) Subject: osd: turn up debugging on SIGINT/TERM X-Git-Tag: v0.5~64 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fd9479b06f4a43ecd362598c2b234d6bbb893af9;p=ceph.git osd: turn up debugging on SIGINT/TERM --- diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc index 39eff90df4a1e..ed65d47b31a65 100644 --- a/src/osd/OSD.cc +++ b/src/osd/OSD.cc @@ -326,6 +326,10 @@ void handle_signal(int signal) case SIGTERM: case SIGINT: got_sigterm = true; + g_conf.debug_osd = 100; + g_conf.debug_journal = 100; + g_conf.debug_filestore = 100; + g_conf.debug_ebofs = 100; break; } }