/usr/src/castle-game-engine-4.1.1/window/castlewindow_eventend.inc is in castle-game-engine-src 4.1.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | {$ifdef CASTLE_WINDOW_EVENTS_LOG}
if Log then
WritelnLog('TCastleWindowBase event', eventname+' end'
{$ifdef BONUS_LOG_STRING} + ' ' + BONUS_LOG_STRING {$endif});
except
on E:Exception do
begin
if Log then
WritelnLog('TCastleWindowBase event', eventname+' raised exception '+E.ClassName+
' with message "'+E.Message+'"');
raise;
end;
end;
{$endif}
|