Re: Why are there no logs?!

2010-09-13 Thread Joshua Muheim
Oh, I found it (Console App). On Sat, Sep 11, 2010 at 2:05 AM, mark_story wrote: > The true just enables logging all errors.  It does not enable logging > page render statistics and other information.  Finding access data can > be done from looking at your webserver logs. > > -Mark > > On Sep 10,

Re: Why are there no logs?!

2010-09-13 Thread Joshua Muheim
Thanks for the information, Mark. I'm on OSX, can you tell me where to get the logs of Apache? On Sat, Sep 11, 2010 at 2:05 AM, mark_story wrote: > The true just enables logging all errors.  It does not enable logging > page render statistics and other information.  Finding access data can > be d

Re: Why are there no logs?!

2010-09-10 Thread mark_story
The true just enables logging all errors. It does not enable logging page render statistics and other information. Finding access data can be done from looking at your webserver logs. -Mark On Sep 10, 5:27 pm, Andy Dirnberger wrote: > Which is not what I asked. From core.php: > > /** >  * Cake

Re: Why are there no logs?!

2010-09-10 Thread Andy Dirnberger
Which is not what I asked. From core.php: /** * CakePHP Log Level: * * In case of Production Mode CakePHP gives you the possibility to continue logging errors. * * The following parameters can be used: * Boolean: Set true/false to activate/deactivate logging *Configure::write('log', tr

Re: Why are there no logs?!

2010-09-10 Thread Miles J
This isn't Ruby on Rails. PHP doesn't log runtime information. Cake only logs errors and debug errors. On Sep 10, 6:30 am, Joshua Muheim wrote: > as mentioned above i use > > define('LOG_ERROR', 2); > > On Fri, Sep 10, 2010 at 3:11 PM, Andy Dirnberger > > wrote: > > What are you using for the l

Re: Why are there no logs?!

2010-09-10 Thread Joshua Muheim
as mentioned above i use define('LOG_ERROR', 2); On Fri, Sep 10, 2010 at 3:11 PM, Andy Dirnberger wrote: > What are you using for the log setting in core.php? > > On Sep 10, 7:52 am, psybear83 wrote: >> Hi everybody >> >> From Ruby On Rails I'm used that while developing my log files are >> ful

Re: Why are there no logs?!

2010-09-10 Thread Andy Dirnberger
What are you using for the log setting in core.php? On Sep 10, 7:52 am, psybear83 wrote: > Hi everybody > > From Ruby On Rails I'm used that while developing my log files are > full of informations about what pages were rendered etc. > > In CakePHP I'm missing this - I don't even seem to have a l

Why are there no logs?!

2010-09-10 Thread psybear83
Hi everybody >From Ruby On Rails I'm used that while developing my log files are full of informations about what pages were rendered etc. In CakePHP I'm missing this - I don't even seem to have a log file in my app/tmp/logs directory? Is this normal? I have set define('LOG_ERROR', 2); is this O