Remove some TODO

This commit is contained in:
Nikolaj
2020-09-15 10:06:17 +02:00
parent 90a16f49c7
commit 9fa4319940
2 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ namespace Umbraco.Web
public static void SuspendDocumentCache()
{
Current.Logger.LogInformation("Suspend document cache.", TODO);
Current.Logger.LogInformation("Suspend document cache.");
_suspended = true;
}
@@ -66,7 +66,7 @@ namespace Umbraco.Web
public static void SuspendIndexers(ILogger logger)
{
logger.LogInformation("Suspend indexers.", TODO);
logger.LogInformation("Suspend indexers.");
_suspended = true;
}
@@ -91,13 +91,13 @@ namespace Umbraco.Web
public static void Suspend()
{
Current.Logger.LogInformation("Suspend scheduled publishing.", TODO);
Current.Logger.LogInformation("Suspend scheduled publishing.");
_suspended = true;
}
public static void Resume()
{
Current.Logger.LogInformation("Resume scheduled publishing.", TODO);
Current.Logger.LogInformation("Resume scheduled publishing.");
_suspended = false;
}
}