2014-10-02 23:16:57 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2014-10-03 18:39:09 +00:00
|
|
|
namespace OC\Diagnostics;
|
2014-10-02 23:16:57 +00:00
|
|
|
|
2014-10-03 18:39:09 +00:00
|
|
|
use OCP\Diagnostics\IEventLogger;
|
2014-10-02 23:16:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dummy event logger that doesn't actually log anything
|
|
|
|
*/
|
2014-10-14 13:49:00 +00:00
|
|
|
class NullEventLogger implements IEventLogger {
|
2014-10-02 23:16:57 +00:00
|
|
|
/**
|
|
|
|
* Mark the start of an event
|
|
|
|
*
|
|
|
|
* @param $id
|
|
|
|
* @param $description
|
|
|
|
*/
|
|
|
|
public function start($id, $description) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark the end of an event
|
|
|
|
*
|
|
|
|
* @param $id
|
|
|
|
*/
|
|
|
|
public function end($id) {
|
|
|
|
}
|
|
|
|
|
2014-10-15 11:14:13 +00:00
|
|
|
public function log($id, $description, $start, $end) {
|
|
|
|
}
|
|
|
|
|
2014-10-02 23:16:57 +00:00
|
|
|
/**
|
2014-10-03 18:39:09 +00:00
|
|
|
* @return \OCP\Diagnostics\IEvent[]
|
2014-10-02 23:16:57 +00:00
|
|
|
*/
|
2014-10-15 11:14:13 +00:00
|
|
|
public function getEvents() {
|
2014-10-02 23:16:57 +00:00
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|