We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b1677 commit 516d3a3Copy full SHA for 516d3a3
1 file changed
Synapse.Common/Classes/Logging/LogUtility.cs
@@ -135,7 +135,7 @@ public static string GetLogFileName(string name)
135
public static string GetLogFileFolder(string name)
136
{
137
string fullPath = GetLogFileName( name );
138
- return string.IsNullOrWhiteSpace( fullPath ) ? Path.GetDirectoryName( fullPath ) : null;
+ return !string.IsNullOrWhiteSpace( fullPath ) ? Path.GetDirectoryName( fullPath ) : null;
139
}
140
141
0 commit comments