# HG changeset patch # User gavinandresen # Date 1289874756 0 # Node ID 015d5de83339d55326d9eca14e80b26b2c2e3997 # Parent 0c2b6f1b1fc0729e4b9af9fe0d526356c557af2e Re-open debug.log every ten minutes instead of every printf; fixes performance problem with Mac FileVault. git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@181 1a98c847-1fd6-4fd8-948a-caf3550aa51b diff --git a/util.cpp b/util.cpp --- a/util.cpp +++ b/util.cpp @@ -157,10 +157,19 @@ else { // print to debug.log - char pszFile[MAX_PATH+100]; - GetDataDir(pszFile); - strlcat(pszFile, "/debug.log", sizeof(pszFile)); - FILE* fileout = fopen(pszFile, "a"); + static FILE* fileout = NULL; + static int64 nOpenTime = 0; + + if (GetTime()-nOpenTime > 10 * 60) + { + if (fileout) + fclose(fileout); + char pszFile[MAX_PATH+100]; + GetDataDir(pszFile); + strlcat(pszFile, "/debug.log", sizeof(pszFile)); + fileout = fopen(pszFile, "a"); + nOpenTime = GetTime(); + } if (fileout) { //// Debug print useful for profiling @@ -169,7 +178,7 @@ va_start(arg_ptr, pszFormat); ret = vfprintf(fileout, pszFormat, arg_ptr); va_end(arg_ptr); - fclose(fileout); + fflush(fileout); } }