Skip to content

Instantly share code, notes, and snippets.

@rafaellucio
Last active December 28, 2017 16:30
Show Gist options
  • Save rafaellucio/b10b498ca5586b058e211d212a5f6b72 to your computer and use it in GitHub Desktop.
Save rafaellucio/b10b498ca5586b058e211d212a5f6b72 to your computer and use it in GitHub Desktop.
class Logger {
sucesso(message) {
console.log(`SUCESSO: ${message}`)
}
error(message) {
console.error(`ERROR: ${message}`)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment