comparison OrthancServer/Sources/OrthancWebDav.cpp @ 4268:0ae2ca210077

new macro TLOG() to replace VLOG() for trace logs with a category
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Nov 2020 14:48:15 +0100
parents d31cba1e27ac
children 50b0c69b653a
comparison
equal deleted inserted replaced
4267:a20928107a90 4268:0ae2ca210077
1243 * After every 30 seconds of inactivity, remove the empty 1243 * After every 30 seconds of inactivity, remove the empty
1244 * folders. This delay is needed to avoid removing 1244 * folders. This delay is needed to avoid removing
1245 * just-created folders before the remote WebDAV has time to 1245 * just-created folders before the remote WebDAV has time to
1246 * write files into it. 1246 * write files into it.
1247 **/ 1247 **/
1248 VLOG(1) << "Cleaning up the empty WebDAV upload folders"; 1248 LOG(TRACE) << "Cleaning up the empty WebDAV upload folders";
1249 that->uploads_.RemoveEmptyFolders(); 1249 that->uploads_.RemoveEmptyFolders();
1250 lastModification = GetNow(); 1250 lastModification = GetNow();
1251 } 1251 }
1252 } 1252 }
1253 } 1253 }