diff --git a/ATxCommon/SystemChecks.cs b/ATxCommon/SystemChecks.cs index 0fc8b2fe9e955481f41ff210160a10a895ed7aad..101326c7620ed406195d05eda27762fa06cdb8ed 100644 --- a/ATxCommon/SystemChecks.cs +++ b/ATxCommon/SystemChecks.cs @@ -15,7 +15,7 @@ namespace ATxCommon /// <summary> /// Get the available physical memory in MB. /// </summary> - /// <returns>The available physical memory in MB or -1 in case of an error.</returns> + /// <returns>Available physical memory in MB or -1 in case of an error.</returns> public static long GetFreeMemory() { try { var searcher = @@ -26,7 +26,7 @@ namespace ATxCommon } } catch (Exception ex) { - Log.Warn("Error in GetFreeMemory: {0}", ex.Message); + Log.Trace("Error in GetFreeMemory: {0}", ex.Message); } return -1;