fix with logger + jscl version update

This commit is contained in:
Sergey Solovyev
2013-01-15 21:54:25 +04:00
parent 1e2b5ac830
commit bfe89e893d
8 changed files with 32 additions and 28 deletions

View File

@@ -25,12 +25,12 @@ public class AndroidCalculatorLogger implements CalculatorLogger {
}
@Override
public void debug(@Nullable String tag, @NotNull String message, @NotNull Throwable e) {
public void debug(@Nullable String tag, @Nullable String message, @NotNull Throwable e) {
Log.d(getTag(tag), message, e);
}
@Override
public void error(@Nullable String tag, @NotNull String message, @NotNull Throwable e) {
public void error(@Nullable String tag, @Nullable String message, @NotNull Throwable e) {
Log.e(getTag(tag), message, e);
}
}