diff --git a/MediaBrowser.Common.Implementations/Logging/NlogManager.cs b/MediaBrowser.Common.Implementations/Logging/NlogManager.cs
index 2917632b8e..cd3dc5c163 100644
--- a/MediaBrowser.Common.Implementations/Logging/NlogManager.cs
+++ b/MediaBrowser.Common.Implementations/Logging/NlogManager.cs
@@ -150,7 +150,7 @@ namespace MediaBrowser.Common.Implementations.Logging
/// The level.
public void ReloadLogger(LogSeverity level)
{
- LogFilePath = Path.Combine(LogDirectory, LogFilePrefix + "-" + DateTime.Now.Ticks + ".log");
+ LogFilePath = Path.Combine(LogDirectory, LogFilePrefix + "-" + decimal.Round(DateTime.Now.Ticks / 10000000) + ".log");
AddFileTarget(LogFilePath, level);
diff --git a/MediaBrowser.ServerApplication/ApplicationHost.cs b/MediaBrowser.ServerApplication/ApplicationHost.cs
index 8f40c9eea0..7342bb6082 100644
--- a/MediaBrowser.ServerApplication/ApplicationHost.cs
+++ b/MediaBrowser.ServerApplication/ApplicationHost.cs
@@ -84,7 +84,7 @@ namespace MediaBrowser.ServerApplication
/// The name of the log file prefix.
protected override string LogFilePrefixName
{
- get { return "Server"; }
+ get { return "server"; }
}
///