diff options
author | James Walker <walkah@walkah.net> | 2010-02-26 16:25:47 -0500 |
---|---|---|
committer | James Walker <walkah@walkah.net> | 2010-02-26 16:26:04 -0500 |
commit | c82cee18769763d105304f09de9b6b4079e48aae (patch) | |
tree | a21f97c220b8b4da4435756979a2c5ec74c58773 /plugins/OStatus | |
parent | b0acaeafe345e925a9a5bf44f4ad86567eee14c2 (diff) |
removing some extraneous debug logging
Diffstat (limited to 'plugins/OStatus')
-rw-r--r-- | plugins/OStatus/lib/salmon.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/OStatus/lib/salmon.php b/plugins/OStatus/lib/salmon.php index 68883a410..3d3341bc6 100644 --- a/plugins/OStatus/lib/salmon.php +++ b/plugins/OStatus/lib/salmon.php @@ -57,8 +57,6 @@ class Salmon $headers = array('Content-Type: application/magic-envelope+xml'); - common_log(LOG_DEBUG, "Salmon: going to post " . $xml); - try { $client = new HTTPClient(); $client->setBody($xml); @@ -95,7 +93,6 @@ class Salmon try { $env = $magic_env->signMessage($text, 'application/atom+xml', $magickey->toString()); } catch (Exception $e) { - common_log(LOG_ERR, "Salmon signing failed: ". $e->getMessage()); return $text; } return $magic_env->toXML($env); @@ -104,7 +101,6 @@ class Salmon public function verifyMagicEnv($text) { - common_log(LOG_DEBUG, "Going to verify ". $text); $magic_env = new MagicEnvelope(); $env = $magic_env->parse($text); |