Skip to content

Commit 516d3a3

Browse files
committed
oops
1 parent 76b1677 commit 516d3a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Synapse.Common/Classes/Logging/LogUtility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public static string GetLogFileName(string name)
135135
public static string GetLogFileFolder(string name)
136136
{
137137
string fullPath = GetLogFileName( name );
138-
return string.IsNullOrWhiteSpace( fullPath ) ? Path.GetDirectoryName( fullPath ) : null;
138+
return !string.IsNullOrWhiteSpace( fullPath ) ? Path.GetDirectoryName( fullPath ) : null;
139139
}
140140
}
141141
}

0 commit comments

Comments
 (0)