SeasLog::getLastLogger

(PECL seaslog >=1.0.0)

SeasLog::getLastLoggerGet SeasLog last logger path

Descripción

public static SeasLog::getLastLogger ( void ) : string

Use the Function SeasLog::getLastLogger() will get the value of seaslog.default_logger what configured in php.ini(seaslog.ini).

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Use the Function SeasLog::setLogger() will change the value of function SeasLog::getLastLogger().

Ejemplos

Ejemplo #1 SeasLog::getLastLogger() example

<?php

var_dump
(SeasLog::getLastLogger());
SeasLog::setLogger('theNewLogger');
var_dump(SeasLog::getLastLogger());
?>

El resultado del ejemplo sería algo similar a:

string(7) "default"
string(12) "theNewLogger"

Ver también