We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
debug
1 parent 43c82c7 commit 0722020Copy full SHA for 0722020
src/paslogbot.lpr
@@ -40,7 +40,7 @@ procedure SignalHandler(signal: longint; info: psiginfo; context: psigcontext);
40
SIGTERM, SIGINT:
41
begin
42
if signal = SIGINT then WriteLn;
43
- debug('Received termination signal');
+ debug('Received termination signal.');
44
if Assigned(Application) then
45
Application.Terminate;
46
end;
@@ -73,7 +73,7 @@ function ConsoleCtrlHandler(CtrlType: DWORD): BOOL; stdcall;
73
case CtrlType of
74
CTRL_C_EVENT, CTRL_BREAK_EVENT, CTRL_CLOSE_EVENT:
75
76
- WriteLn('Received termination signal');
77
78
79
Result := True;
0 commit comments