1: <?php
2:
3: namespace Guzzle\Log;
4:
5: /**
6: * Adapter class that allows Guzzle to log data to various logging implementations.
7: */
8: interface LogAdapterInterface
9: {
10: /**
11: * Log a message at a priority
12: *
13: * @param string $message Message to log
14: * @param integer $priority Priority of message (use the \LOG_* constants of 0 - 7)
15: * @param mixed $extras Extra information to log in event
16: */
17: public function log($message, $priority = LOG_INFO, $extras = null);
18: }
19: