Fix a number of format errors when using debug macros.

This commit is contained in:
Johanna Amann 2016-08-12 15:42:02 -07:00
parent 1889f409e9
commit c464cf78dd
7 changed files with 13 additions and 13 deletions

View file

@ -9,7 +9,7 @@ FileTimer::FileTimer(double t, const string& id, double interval)
: Timer(t + interval, TIMER_FILE_ANALYSIS_INACTIVITY), file_id(id)
{
DBG_LOG(DBG_FILE_ANALYSIS, "New %f second timeout timer for %s",
file_id.c_str(), interval);
interval, file_id.c_str());
}
void FileTimer::Dispatch(double t, int is_expire)