Browse Source

Expand the logpath attribute using environment variables

Vincent Latombe 14 years ago
parent
commit
4feff7ae72
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ServiceDescriptor.cs

+ 1 - 1
ServiceDescriptor.cs

@@ -191,7 +191,7 @@ namespace winsw
 
                 if (loggingNode != null)
                 {
-                    return loggingNode.InnerText;
+                    return Environment.ExpandEnvironmentVariables(loggingNode.InnerText);
                 }
                 else
                 {