diff options
author | Michael Hendricks <michael@ndrix.org> | 2012-03-02 12:31:16 -0700 |
---|---|---|
committer | Michael Hendricks <michael@ndrix.org> | 2012-05-18 16:20:03 -0600 |
commit | 9af080c351c40a4f56d37174253d33a9f4ffdb69 (patch) | |
tree | b3b9f85c0f7cbca2ca880ba36a5e4bbca8e006d0 /src/util.h | |
parent | fea25712ca54c4715f874cf3d871e84bbfd83352 (diff) |
Reopen debug.log on SIGHUP
The best log rotation method formerly available was to configure
logrotate with the copytruncate option. As described in the logrotate
documentation, "there is a very small time slice between copying the
file and truncating it, so some logging data might be lost".
By sending SIGHUP to the server process, one can now reopen the debug
log file without losing any data.
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index f7bdaf5332..edef354443 100644 --- a/src/util.h +++ b/src/util.h @@ -121,6 +121,7 @@ extern std::string strMiscWarning; extern bool fTestNet; extern bool fNoListen; extern bool fLogTimestamps; +extern bool fReopenDebugLog; void RandAddSeed(); void RandAddSeedPerfmon(); |