Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created June 16, 2016 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlamim/27bf9fb3d6d84e22fe56105f8641c310 to your computer and use it in GitHub Desktop.
Save jlamim/27bf9fb3d6d84e22fe56105f8641c310 to your computer and use it in GitHub Desktop.
Exemplos de mensagens de log
<?php
if ($variavel)
{
log_message('debug', 'Variável informada corretamente.');
}
else
{
log_message('error', 'Variável não informada.');
}
log_message('info', 'Tarefa executada com sucesso.');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment