diff --git a/uSync8.BackOffice/Services/uSyncService.cs b/uSync8.BackOffice/Services/uSyncService.cs index a54cad76..8c7d5a01 100644 --- a/uSync8.BackOffice/Services/uSyncService.cs +++ b/uSync8.BackOffice/Services/uSyncService.cs @@ -4,6 +4,7 @@ using System.Linq; using Umbraco.Core.Composing; +using Umbraco.Core.Configuration; using Umbraco.Core.Logging; using uSync8.BackOffice.Configuration; @@ -102,8 +103,9 @@ public IEnumerable Report(string folder, IEnumerable x.Handler), "Reporting", handlers.Count()); - if (settings.ReportDebug) + if (GlobalSettings.DebugMode && settings.ReportDebug) { + logger.Warn("Running Report Debug - this can be a slow process, don't enable unless you need it"); // debug - full export into a dated folder. summary.Message = "Debug: Creating Extract in Tracker folder"; callbacks?.Callback?.Invoke(summary);