Skip to content

Commit

Permalink
Adding CRITICAL, STRACE, ALERT Kohana constants, fixes #3441
Browse files Browse the repository at this point in the history
  • Loading branch information
zombor committed Dec 2, 2010
1 parent cc9e318 commit 038a021
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions classes/kohana/core.php
Expand Up @@ -20,9 +20,12 @@ class Kohana_Core {
const CODENAME = 'großen jäger';

// Log message types
const ERROR = 'ERROR';
const DEBUG = 'DEBUG';
const INFO = 'INFO';
const ERROR = 'ERROR';
const DEBUG = 'DEBUG';
const INFO = 'INFO';
const CRITICAL = 'CRITICAL';
const STRACE = 'STRACE';
const ALERT = 'ALERT';

// Common environment type constants for consistency and convenience
const PRODUCTION = 'production';
Expand Down

0 comments on commit 038a021

Please sign in to comment.