I solved the problem (I had the same problem as you).
Somwhy php systhem will not create the "logs" folder on its own. So, I use the following:
1) I created the "logs" folder in the right place
2) I restarted the application using xampp controlpannel (stop and start).
3) and created a fatal error using
trigger_error("Some info",E_USER_ERROR);
Then the log file was created by php and worked again.
Hope this helps you.
source
share