![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/app/code/Cnc/SerialNumber/Model/ |
<?php /** * Copyright (c) 2020 Kaliop Digital Commerce (https://digitalcommerce.kaliop.com) All Rights Reserved. * https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * Krzysztof Majkowski <[email protected]> */ declare(strict_types=1); namespace Cnc\SerialNumber\Model; use Magento\Backend\Model\Auth\Session; class Logger { const LOG_FILE = 'serial_number.log'; /** * @var \Zend\Log\Writer\Stream */ private $writer; /** * @var \Zend\Log\Logger */ private $logger; /** * @var Session */ private $authSession; /** * Logger constructor. * @param Session $authSession */ public function __construct(Session $authSession) { $this->authSession = $authSession; $this->writer = new \Zend_Log_Writer_Stream(BP . '/var/log/' . self::LOG_FILE); $this->logger = new \Zend_Log(); $this->logger->addWriter($this->writer); } /** * Log message. * * @param $message */ public function log($message) { if ($this->getAdminUserId()) { $message = '[Admin: ' . $this->getAdminUserName() . ' (id: ' . $this->getAdminUserId() . ')] - ' . $message; } $this->logger->info($message); } /** * Get admin user id. * * @return int */ private function getAdminUserId(): int { if ($this->authSession->getUser()) { return (int) $this->authSession->getUser()->getId(); } return 0; } /** * Get admin user name. * * @return string|null */ private function getAdminUserName(): ?string { if ($this->authSession->getUser()) { return $this->authSession->getUser()->getUserName(); } return null; } }