mxmbsocket/lib/Ratchet/Logging/LoggerInterface.php
2011-10-28 15:15:23 -04:00

25 lines
450 B
PHP

<?php
namespace Ratchet\Logging;
/**
* A logger used by the server and extending applications for debugging info
*/
interface LoggerInterface {
/**
* Just an informational log
* @param string
*/
function note($msg);
/**
* A problem, but nothing too serious
* @param string
*/
function warning($msg);
/**
* Bad things have happened...
* @param string
*/
function error($msg);
}