Created
July 13, 2017 21:56
-
-
Save andkon/504f614575972da68cc9956137017eb6 to your computer and use it in GitHub Desktop.
Logging a 404 error
This file contains hidden or 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
Objective C: | |
NSLog(@"404 Error: Page not found"); | |
Swift: | |
print("404 Error: Page not found") | |
Android: | |
Log.v("404 Error: Page not found") | |
React Native: | |
console.error("404 Error: Page not found"); | |
Xamarin: | |
Console.WriteLine("404 Error: Page not found"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment