turn down logging from DAV basicauth until needed

This commit is contained in:
zotlabs 2018-05-07 22:07:44 -07:00
parent 0c43a9bb5d
commit 611e22d676

View File

@ -253,11 +253,11 @@ class BasicAuth extends DAV\Auth\Backend\AbstractBasic {
* @return void
*/
public function log() {
logger('channel_name ' . $this->channel_name, LOGGER_DATA);
logger('channel_id ' . $this->channel_id, LOGGER_DATA);
logger('channel_hash ' . $this->channel_hash, LOGGER_DATA);
logger('observer ' . $this->observer, LOGGER_DATA);
logger('owner_id ' . $this->owner_id, LOGGER_DATA);
logger('owner_nick ' . $this->owner_nick, LOGGER_DATA);
// logger('channel_name ' . $this->channel_name, LOGGER_DATA);
// logger('channel_id ' . $this->channel_id, LOGGER_DATA);
// logger('channel_hash ' . $this->channel_hash, LOGGER_DATA);
// logger('observer ' . $this->observer, LOGGER_DATA);
// logger('owner_id ' . $this->owner_id, LOGGER_DATA);
// logger('owner_nick ' . $this->owner_nick, LOGGER_DATA);
}
}