class SysLogTest
Same name in this branch
- 11.x core/modules/syslog/tests/src/Kernel/SyslogTest.php \Drupal\Tests\syslog\Kernel\SyslogTest
- 11.x core/modules/syslog/tests/src/Functional/SyslogTest.php \Drupal\Tests\syslog\Functional\SyslogTest
Same name in other branches
- 9 core/modules/syslog/tests/src/Kernel/SyslogTest.php \Drupal\Tests\syslog\Kernel\SyslogTest
- 9 core/modules/syslog/tests/src/Functional/SyslogTest.php \Drupal\Tests\syslog\Functional\SyslogTest
- 9 core/modules/syslog/tests/modules/syslog_test/src/Logger/SysLogTest.php \Drupal\syslog_test\Logger\SysLogTest
- 8.9.x core/modules/syslog/tests/src/Kernel/SyslogTest.php \Drupal\Tests\syslog\Kernel\SyslogTest
- 8.9.x core/modules/syslog/tests/src/Functional/SyslogTest.php \Drupal\Tests\syslog\Functional\SyslogTest
- 8.9.x core/modules/syslog/tests/modules/syslog_test/src/Logger/SysLogTest.php \Drupal\syslog_test\Logger\SysLogTest
- 10 core/modules/syslog/tests/src/Kernel/SyslogTest.php \Drupal\Tests\syslog\Kernel\SyslogTest
- 10 core/modules/syslog/tests/src/Functional/SyslogTest.php \Drupal\Tests\syslog\Functional\SyslogTest
- 10 core/modules/syslog/tests/modules/syslog_test/src/Logger/SysLogTest.php \Drupal\syslog_test\Logger\SysLogTest
Redirects logging messages to error_log.
Hierarchy
- class \Drupal\syslog\Logger\SysLog implements \Psr\Log\LoggerInterface uses \Drupal\Core\Logger\RfcLoggerTrait
- class \Drupal\syslog_test\Logger\SysLogTest extends \Drupal\syslog\Logger\SysLog implements \Psr\Log\LoggerInterface
Expanded class hierarchy of SysLogTest
1 string reference to 'SysLogTest'
- syslog_test.services.yml in core/
modules/ syslog/ tests/ modules/ syslog_test/ syslog_test.services.yml - core/modules/syslog/tests/modules/syslog_test/syslog_test.services.yml
1 service uses SysLogTest
- logger.syslog_test in core/
modules/ syslog/ tests/ modules/ syslog_test/ syslog_test.services.yml - Drupal\syslog_test\Logger\SysLogTest
File
-
core/
modules/ syslog/ tests/ modules/ syslog_test/ src/ Logger/ SysLogTest.php, line 13
Namespace
Drupal\syslog_test\LoggerView source
class SysLogTest extends SysLog implements LoggerInterface {
/**
* {@inheritdoc}
*/
protected function syslogWrapper($level, $entry) {
$log_path = \Drupal::service('file_system')->realpath('public://syslog.log');
error_log($entry . PHP_EOL, 3, $log_path);
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
RfcLoggerTrait::alert | public | function | ||
RfcLoggerTrait::critical | public | function | ||
RfcLoggerTrait::debug | public | function | ||
RfcLoggerTrait::emergency | public | function | ||
RfcLoggerTrait::error | public | function | ||
RfcLoggerTrait::info | public | function | ||
RfcLoggerTrait::notice | public | function | ||
RfcLoggerTrait::warning | public | function | ||
SysLog::$config | protected | property | A configuration object containing syslog settings. | |
SysLog::$connectionOpened | protected | property | Stores whether there is a system logger connection opened or not. | |
SysLog::$parser | protected | property | The message's placeholders parser. | |
SysLog::log | public | function | Overrides RfcLoggerTrait::log | |
SysLog::openConnection | protected | function | Opens a connection to the system logger. | |
SysLog::__construct | public | function | Constructs a SysLog object. | |
SysLogTest::syslogWrapper | protected | function | A syslog wrapper to make syslog functionality testable. | Overrides SysLog::syslogWrapper |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.