public static void Log(this IDxStoreEventLogger logger, string periodicKey, TimeSpan?periodicDuration, DxEventSeverity severity, int id, string formatString, params object[] args)
 {
     if (periodicKey != null)
     {
         logger.LogPeriodic(periodicKey, periodicDuration.Value, severity, id, formatString, args);
         return;
     }
     logger.Log(severity, id, formatString, args);
 }