TestLogStaticConfig.php 387 B

123456789101112131415161718192021
  1. <?php
  2. namespace TestApp\Config;
  3. use Cake\Core\StaticConfigTrait;
  4. class TestLogStaticConfig
  5. {
  6. use StaticConfigTrait;
  7. /**
  8. * Log engine class map.
  9. *
  10. * @var array
  11. */
  12. protected static $_dsnClassMap = [
  13. 'console' => 'Cake\Log\Engine\ConsoleLog',
  14. 'file' => 'Cake\Log\Engine\FileLog',
  15. 'syslog' => 'Cake\Log\Engine\SyslogLog',
  16. ];
  17. }