mxmbsocket/lib/Ratchet/Logging/NullLogger.php
Chris Boden 5ee0d1291d Logging
Added logging to application, monolog adapter
2011-10-24 10:38:26 -04:00

13 lines
183 B
PHP

<?php
namespace Ratchet\Logging;
class NullLogger implements LoggerInterface {
function note($msg) {
}
function warning($msg) {
}
function error($msg) {
}
}