Re: Conceptual Question about logging

2006-11-15 Thread Chris Hartjes
On 11/15/06, Mandy <[EMAIL PROTECTED]> wrote: > > Now, my question is if I have lots of debugs sprinkled around my > application, will my users see a significant delay (if like thousands > access it)? > If thousands of people access your application at the same time, I think the so-small-you-will

Re: Conceptual Question about logging

2006-11-15 Thread meek
Hi, You can look at the cake files to see how this is done - the log function is in object.php, which in turn uses a simple class 'CakeLog' in 'cake_log.php', which in turn uses the 'File' class in file.php. As far as I can see, Cake opens and closes the file each time it writes something. I don't

Conceptual Question about logging

2006-11-15 Thread Mandy
Hi Bakers, I have a question about logging in cake. When I have to log something I do a - $this->log('Controllername: logMessage'); Now, my question is if I have lots of debugs sprinkled around my application, will my users see a significant delay (if like thousands access it)? How does loggi