Created
May 4, 2016 18:37
-
-
Save abjurato/01f7c87e00c54667b7e1d850958a210e to your computer and use it in GitHub Desktop.
Logger for Heroku. Swift, Perfect, mustache and PostgreSQL on Heroku.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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