* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) */ namespace PrestaShop\Module\AutoUpgrade; use PrestaShop\Module\AutoUpgrade\Log\LoggerInterface; class LoggedEventIo { private $logger; public function __construct(LoggerInterface $logger) { $this->logger = $logger; } public function write($message) { $this->logger->debug($message); } }