Skip to content

Instantly share code, notes, and snippets.

@abjurato
Created May 4, 2016 18:37
Show Gist options
  • Save abjurato/01f7c87e00c54667b7e1d850958a210e to your computer and use it in GitHub Desktop.
Save abjurato/01f7c87e00c54667b7e1d850958a210e to your computer and use it in GitHub Desktop.
Logger for Heroku. Swift, Perfect, mustache and PostgreSQL on Heroku.
#if os(Linux)
import Glibc
#else
import Darwin
#endif
enum Logger {
static func info(string: String) {
fputs(string, stdout)
fflush(stdout)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment