|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-08-25 10:20 UTC] ob dot php at daevel dot fr
[2009-09-21 16:16 UTC] jhaagsma at gmail dot com
[2009-09-21 16:23 UTC] ob dot php at daevel dot fr
[2009-09-21 17:13 UTC] jhaagsma at gmail dot com
[2009-09-21 18:58 UTC] magicaltux@php.net
[2010-05-21 09:51 UTC] glibin dot v at gmail dot com
[2010-05-21 17:47 UTC] magicaltux@php.net
[2017-10-24 23:23 UTC] kalle@php.net
-Status: Open
+Status: Suspended
[2017-10-24 23:23 UTC] kalle@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 10:00:02 2025 UTC |
Description: ------------ If I use setproctitle() then syslog() to report a message, this message contains part of the setproctitle() parameter followed by lot of spaces. But maybe it's a syslog normal behaviour ? Reproduce code: --------------- <?php setproctitle('modified title'); syslog(LOG_INFO, 'tracked error'); ?> Expected result: ---------------- Aug 25 16:15:24 gloof php tracked error or Aug 25 16:15:24 gloof modified title tracked error Actual result: -------------- Aug 25 16:15:24 gloof modified title : tracked error