1*0119ca25SAndreas Gohr<?php 2*0119ca25SAndreas Gohr 3*0119ca25SAndreas Gohrnamespace Psr\Log; 4*0119ca25SAndreas Gohr 5*0119ca25SAndreas Gohr/** 6*0119ca25SAndreas Gohr * Describes a logger-aware instance. 7*0119ca25SAndreas Gohr */ 8*0119ca25SAndreas Gohrinterface LoggerAwareInterface 9*0119ca25SAndreas Gohr{ 10*0119ca25SAndreas Gohr /** 11*0119ca25SAndreas Gohr * Sets a logger instance on the object. 12*0119ca25SAndreas Gohr * 13*0119ca25SAndreas Gohr * @param LoggerInterface $logger 14*0119ca25SAndreas Gohr * 15*0119ca25SAndreas Gohr * @return void 16*0119ca25SAndreas Gohr */ 17*0119ca25SAndreas Gohr public function setLogger(LoggerInterface $logger); 18*0119ca25SAndreas Gohr} 19