SeasLog::flushBuffer

(PECL seaslog >=1.0.0)

SeasLog::flushBufferFlush logs buffer, dump to appender file, or send to remote api with tcp/udp

Descrição

public static SeasLog::flushBuffer(): bool

Flush logs buffer by seaslog.appender: dump to file, or send to remote api with tcp/udp.

Nota:

See also: seaslog.appender_retry seaslog.remote_host seaslog.remote_port

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Return TRUE on flush buffer success, FALSE on failure.

Exemplos

Exemplo #1 SeasLog::flushBuffer() example

<?php

SeasLog
::info('info log');
SeasLog::debug('debug log');
var_dump(SeasLog::getBuffer());
var_dump(SeasLog::flushBuffer());
var_dump(SeasLog::getBuffer());

?>

O exemplo acima produzirá algo semelhante a:

array(1) {
  ["/var/log/www/default/20180707.log"]=>
  array(2) {
    [0]=>
    string(79) "2018-07-07 10:47:58 | INFO | 71910 | 5b4029ded6009 | 1530931678.877 | info log
"
    [1]=>
    string(81) "2018-07-07 10:47:58 | DEBUG | 71910 | 5b4029ded6009 | 1530931678.877 | debug log
"
  }
}
bool(true)
array(0) {
}

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top