Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Project/Sources/Methods/getLogLines.4dm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ Else
DOCUMENT LIST:C474($str; $logFiles)
$project.LogsFolderPath:=$str
For ($i; 1; Size of array:C274($logFiles))
If (($logFiles{$i}="4DDebugLog_@") & ($logFiles{$i}="@.txt"))

// Modified by: Alistair Bates (20/10/2023)
// Server logs are called "4DDebugLogServer" - removed _ from the end of the text search below
If (($logFiles{$i}="4DDebugLog@") & ($logFiles{$i}="@.txt"))
$path:=New object:C1471("path"; $str+$logFiles{$i})
logPath.push($path)
End if
Expand Down