GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Dancer::Logger::Abstract(3) User Contributed Perl Documentation Dancer::Logger::Abstract(3)

Dancer::Logger::Abstract - Abstract logging engine for Dancer

version 1.3513

In your configuration file:

    # default
    logger_format: simple
    # [1234] debug @0.12> [hit #123]message from your log in File.pm line 12

    # custom
    logger_format: %m %{%H:%M}t [%{accept_type}h]
    # message from your log [11:59] [text/html]

This is an abstract logging engine that provides loggers with basic functionality and some sanity checking.

This is a format string (or a preset name) to specify the log format.

The possible values are:

%h
host emitting the request
%t
date (local timezone, formatted like %d/%b/%Y %H:%M:%S)
%T
date (local timezone, formatted like %Y-%m-%d %H:%M:%S)
%u
date (UTC timezone, formatted like %d/%b/%Y %H:%M:%S)
%U
date (UTC timezone, formatted like %Y-%m-%d %H:%M:%S)
%P
PID
%L
log level
%D
timer
%m
message
%f
file name that emit the message
%l
line from the file
%i
request ID
%{$fmt}t
timer formatted with a valid time format
%{header}h
header value

There is currently a single preset log format:

simple
will format the message like: [%P] %L @%D> %i%m in %f l. %l

Provides a common message formatting.

Logs messages as core.

Logs messages as debug.

Logs messages as warning.

Logs messages as error.

Logs messages as info.

A method to override. If your logger does not provide this, it will cause the application to die.

Checks a certain level number against a certain level type (core, debug, info warning, error).

Dancer Core Developers

This software is copyright (c) 2010 by Alexis Sukrieh.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2020-01-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.