Neil Tancock
2007-Jan-25 02:29 UTC
[asterisk-users] Starting Asterisk in vvvvvvvvvvverbose mode
Hi, how do I get Asterisk to start in very verbose mode every time it boots? Neil safeharbour IT Ltd Your IT Department fax: 0845 867 2891 mob: 07812 114784 voip: 200@pbx.safeharbourit.co.uk email: <mailto:neil@safeharbourit.co.uk> neil@safeharbourit.co.uk web: <http://www.safeharbourit.co.uk/> www.safeharbourit.co.uk The information in this e-mail is confidential and may be legally privileged. It is intended solely for the addressee. Access to this e-mail by anyone else is unauthorised. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. When addressed to our clients, any opinions or advice contained in this e-mail are subject to the terms and conditions expressed in any applicable governing terms of business. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070125/5dd20cea/attachment.htm
Pavel Jezek
2007-Jan-25 02:47 UTC
[asterisk-users] Starting Asterisk in vvvvvvvvvvverbose mode
asterisk.conf [options] verbose = 3 ; Verbosity level for logging (-v) Neil Tancock wrote:> Hi, how do I get Asterisk to start in very verbose mode every time it > boots? > > Neil > >
Hi, I have /dev/ttyS0 set up with a serial cable so a call centre system can pick up CallerID. How can I redirect the log output of asterisk to /dev/ttyS0 or /dev/console? Many thanks, Neil safeharbour IT Ltd Your IT Department fax: 0845 867 2891 mob: 07812 114784 voip: 200@pbx.safeharbourit.co.uk email: <mailto:neil@safeharbourit.co.uk> neil@safeharbourit.co.uk web: <http://www.safeharbourit.co.uk/> www.safeharbourit.co.uk The information in this e-mail is confidential and may be legally privileged. It is intended solely for the addressee. Access to this e-mail by anyone else is unauthorised. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. When addressed to our clients, any opinions or advice contained in this e-mail are subject to the terms and conditions expressed in any applicable governing terms of business. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070201/6551edc3/attachment.htm
> Hi, I have /dev/ttyS0 set up with a serial cable so a call centre system can > pick up CallerID. How can I redirect the log output of asterisk to > /dev/ttyS0 or /dev/console?I think you might be better off with a System() call in your dial plan such as: System(echo ${CALLERIDNUM} > /dev/ttyS0) That will send the callerID number followed by a new line. You can of course change the format to your desire. Make sure /dev/ttyS0 is writable by the asterisk user, and is also properly set up (baud rate, bits, ...). --Luki