[TYPO3-english] devlog on production system

2011-03-31 Thread Georg Schönweger
Hi, Today we had a problem with a payment transaction on our website.. i tried to find any logs but i had no devLog extension installed so my only logfile was the one from Apache. I checked the TER and found the Extension devlog. How do you manage logging on production systems? Is it a good idea

Re: [TYPO3-english] devlog on production system

2011-03-31 Thread François Suter
Hi, How do you manage logging on production systems? Is it a good idea to activate it on a production system if Minimun level for logging is set to 3 (only Errors)? Do i have to expect less performance? It really depends. There's a general setting in the Install Tool called enableDLOG. If

Re: [TYPO3-english] devlog on production system

2011-03-31 Thread Georg Schönweger
Hello Francois, thank you for your explanation. In class.t3lib_div.php i found: * If you want to implement the devLog in your applications, simply add lines like: * if (TYPO3_DLOG) t3lib_div::devLog('[write message in english here]', 'extension key'); So the proper way of

Re: [TYPO3-english] devlog on production system

2011-03-31 Thread François Suter
Hi Georg, Also the problematic extension on our website is writing to devlog only with enable_DLOG=1 [snip] For all other debug messages with log levels less than 3 it is just a few IF conditions .. do you think this few if conditions can reduce the performance? Are there so many calls to