aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/android
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2018-04-12 18:50:58 -0400
committerGitHub <noreply@github.com>2018-04-12 18:50:58 -0400
commitd9e2562267e549ee407e683262406581f2c4888e (patch)
tree0dc063913b00a9dc4f10d0d5c7085218c2cc17c3 /app/src/test/kotlin/android
parent42e57597bcc3216778e9f14389f751eb62da1bd5 (diff)
downloadfrost-d9e2562267e549ee407e683262406581f2c4888e.tar.gz
frost-d9e2562267e549ee407e683262406581f2c4888e.tar.bz2
frost-d9e2562267e549ee407e683262406581f2c4888e.zip
Misc (#865)
* Clean up git code * Update download link * Update theme * Reorder settings, resolvees #856 * Do not log undeliverable exception * Handle potential lack of webview * Set notification epoch default to now, resolves #857 * Fix notification epoch time init * Update changelog * Update theme * Add slack url, resolves #880 * Prepare for image update
Diffstat (limited to 'app/src/test/kotlin/android')
-rw-r--r--app/src/test/kotlin/android/util/Log.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/src/test/kotlin/android/util/Log.java b/app/src/test/kotlin/android/util/Log.java
index e7095563..a2f431ed 100644
--- a/app/src/test/kotlin/android/util/Log.java
+++ b/app/src/test/kotlin/android/util/Log.java
@@ -32,22 +32,22 @@ public class Log {
return 0;
}
- public static int println(int priority, String tag, String message) {
+ public static int println(int priority, String tag, String msg) {
switch (priority) {
case VERBOSE:
- p("V", tag, message);
+ p("V", tag, msg);
break;
case INFO:
- p("I", tag, message);
+ p("I", tag, msg);
break;
case DEBUG:
- p("D", tag, message);
+ p("D", tag, msg);
break;
case ERROR:
- p("E", tag, message);
+ p("E", tag, msg);
break;
default:
- p("L " + priority, tag, message);
+ p("L " + priority, tag, msg);
break;
}
return 0;