fix warning for logs

This commit is contained in:
Evan Prodromou 2011-04-29 12:48:41 -07:00
parent 6868bf461a
commit 6464c77505
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class DomainStatusNetworkPlugin extends Plugin
foreach ($tags as $tag) {
if (strncmp($tag, 'domain=', 7) == 0) {
$domain = substr($tag, 7);
$this->log("Setting email domain to {$domain}");
$this->log(LOG_INFO, "Setting email domain to {$domain}");
common_config_append('email', 'whitelist', $domain);
}
}