Browse Source

Merge pull request #6122 from ghalliday/issue11637

HPCC-11637 Add some tracing to the log when cache is rebuilt

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 11 years ago
parent
commit
ec9fcd3da6
1 changed files with 2 additions and 0 deletions
  1. 2 0
      esp/services/ws_smc/ws_smcService.cpp

+ 2 - 0
esp/services/ws_smc/ws_smcService.cpp

@@ -668,6 +668,8 @@ ActivityInfo* CWsSMCEx::getActivityInfo(IEspContext &context, IEspActivityReques
     if (activityInfoCache && activityInfoCache->isCachedActivityInfoValid(activityInfoCacheSeconds))
     if (activityInfoCache && activityInfoCache->isCachedActivityInfoValid(activityInfoCacheSeconds))
         return activityInfoCache.getLink();
         return activityInfoCache.getLink();
 
 
+    DBGLOG("CWsSMCEx::getActivityInfo - rebuild cached information");
+
     activityInfoCache.setown(createActivityInfo(context, req));
     activityInfoCache.setown(createActivityInfo(context, req));
     return activityInfoCache.getLink();
     return activityInfoCache.getLink();
 }
 }