view logger.inc @ 48:c6d0892f81ff

Documentation.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Tue, 09 Oct 2012 20:05:12 +0200
parents 66382989353f
children 2cfea6e84694
line wrap: on
line source

<?php
function logMsg($level, $msg)
{
  if (DEBUG_LEVEL >= $level) {
    print $msg;
    if(ABORT_ON_LOG)
      exit;
  }
}

function warn($msg)
{
  logMsg(VERBOSITY_WARNING, $msg);
}
?>