16
General Asterisk configuration / SOLVED: Monitor() application writes premature entries to queue_log
« on: April 21, 2009, 16:42:29 »
Thanks for the pointers. When I experimented with the different applications in my dial plan I had the situation where no monitoring occured but still the log got written prematurely. The culprit was not Monitor() but my menu which contained the Dial() command:
After I replaced that line with
the logging was ok again.
Code: [Select]
exten => recordsettings,n,Dial(Local/s@sales); User has chosen "Recording allowed" After I replaced that line with
Code: [Select]
exten => recordsettings,n,Goto(sales,s,1); User has chosen "Recording allowed" the logging was ok again.
