mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 11:19:26 +02:00
14 lines
296 B
PHP
14 lines
296 B
PHP
<?php
|
|
/**
|
|
* StreamConfig has the capability to create a specific LogStream
|
|
* object depending on a configured LogStream*Config object.
|
|
*/
|
|
class LogStreamConfigDisk extends LogStreamConfig {
|
|
public $FileName = '';
|
|
|
|
public function LogStreamFactory($o) {
|
|
return new LogStreamDisk($o);
|
|
}
|
|
|
|
}
|
|
?>
|