Hi all, I didn't notice how it happened, but after initially seeing some log entries, now I get nothing in there, neither on the server nor on the local machine. - The permissions seem okay. - My config files (below) are also all vanilla. Any ideas would be welcome. I'd rather not be flying blind. :-) Regards, Joel ........... config.yml yout: "main" logger: "file" appname: "danceapp" session: "YAML" template: "template_toolkit" development.yml log: "debug" warnings: 1 show_errors: 1 auto_reload: 1 production.yml warnings: 0 show_errors: 0 route_cache: 1 auto_reload: 0 -- Joel Roth
The configuration seems correct from first sight. What's "yout" in the first line in config.yml? Try changing the "logger" to the value of "console" and try to run the program from the terminal in foreground ("perl bin/app.pl" or the likes). Does that show you messages in the console? On Mon, Dec 6, 2010 at 1:25 AM, Joel Roth <joelz@pobox.com> wrote:
Hi all,
I didn't notice how it happened, but after initially seeing some log entries, now I get nothing in there, neither on the server nor on the local machine.
- The permissions seem okay. - My config files (below) are also all vanilla.
Any ideas would be welcome. I'd rather not be flying blind. :-)
Regards,
Joel
...........
config.yml
yout: "main" logger: "file" appname: "danceapp" session: "YAML" template: "template_toolkit"
development.yml
log: "debug" warnings: 1 show_errors: 1 auto_reload: 1
production.yml
warnings: 0 show_errors: 0 route_cache: 1 auto_reload: 0
-- Joel Roth _______________________________________________ Dancer-users mailing list Dancer-users@perldancer.org http://www.backup-manager.org/cgi-bin/listinfo/dancer-users
On Mon, Dec 06, 2010 at 11:11:59AM +0200, sawyer x wrote:
The configuration seems correct from first sight. What's "yout" in the first line in config.yml?
Hi, That's a fence-post error during cut-and-paste. The full line is layout: "main"
Try changing the "logger" to the value of "console" and try to run the program from the terminal in foreground ("perl bin/app.pl" or the likes). Does that show you messages in the console?
I tried this setting. For example, if I point the browser to a non-existent page under the development environment dumps info to the browser, but not a peep on the console. The development.log file previously showed every attempted route match. I went back to an early test script using Dancer, based on the first hello world example. No new logging entries appeared in that log, using either "file" or "console" logger settings. The log silence has shown up in my production host, as well as the local system I used for testing. Both used Dancer 1.2000, and both were installations made using local::lib. I'm sure it would be rewarding to study Dancer's codebase and to attempt to begin diagnosing such problems myself. Regards, Joel
On Mon, Dec 6, 2010 at 1:25 AM, Joel Roth <joelz@pobox.com> wrote:
Hi all,
I didn't notice how it happened, but after initially seeing some log entries, now I get nothing in there, neither on the server nor on the local machine.
- The permissions seem okay. - My config files (below) are also all vanilla.
Any ideas would be welcome. I'd rather not be flying blind. :-)
Regards,
Joel
...........
config.yml
yout: "main" logger: "file" appname: "danceapp" session: "YAML" template: "template_toolkit"
development.yml
log: "debug" warnings: 1 show_errors: 1 auto_reload: 1
production.yml
warnings: 0 show_errors: 0 route_cache: 1 auto_reload: 0
-- Joel Roth _______________________________________________ Dancer-users mailing list Dancer-users@perldancer.org http://www.backup-manager.org/cgi-bin/listinfo/dancer-users
-- Joel Roth
Check for the environment-specific configuration files in the subdirectory environment (or environments, I don't recall at the moment), they override the main configuration file and where the logging goes is one of the configurations that are likely to be changed by default. Cheers, Flavio. On Mon, Dec 6, 2010 at 12:25 AM, Joel Roth <joelz@pobox.com> wrote:
Hi all,
I didn't notice how it happened, but after initially seeing some log entries, now I get nothing in there, neither on the server nor on the local machine.
- The permissions seem okay. - My config files (below) are also all vanilla.
Any ideas would be welcome. I'd rather not be flying blind. :-)
Regards,
Joel
...........
config.yml
yout: "main" logger: "file" appname: "danceapp" session: "YAML" template: "template_toolkit"
development.yml
log: "debug" warnings: 1 show_errors: 1 auto_reload: 1
production.yml
warnings: 0 show_errors: 0 route_cache: 1 auto_reload: 0
-- Joel Roth _______________________________________________ Dancer-users mailing list Dancer-users@perldancer.org http://www.backup-manager.org/cgi-bin/listinfo/dancer-users
participants (3)
-
Flavio Poletti -
Joel Roth -
sawyer x