Log::shouldReceive()

static Expectation shouldReceive() Initiate a mock expectation on the facade. Return Value Expectation

Log::setFacadeApplication()

static void setFacadeApplication(Application $app) Set the application instance. Parameters Application $app Return Value void

Log::notice()

void notice(string $message, array $context = array()) Log a notice to the logs. Parameters string $message array $context Return Value void

Log::log()

void log(string $level, string $message, array $context = array()) Log a message to the logs. Parameters string $level string $message array $context Return Value void

Log::info()

void info(string $message, array $context = array()) Log an informational message to the logs. Parameters string $message array $context Return Value void

Log::getFacadeRoot()

static mixed getFacadeRoot() Get the root object behind the facade. Return Value mixed

Log::getFacadeApplication()

static Application getFacadeApplication() Get the application instance behind the facade. Return Value Application

Log::error()

void error(string $message, array $context = array()) Log an error message to the logs. Parameters string $message array $context Return Value void

Log::debug()

void debug(string $message, array $context = array()) Log a debug message to the logs. Parameters string $message array $context Return Value void

Log::critical()

void critical(string $message, array $context = array()) Log a critical message to the logs. Parameters string $message array $context Return Value void