Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #4 from ParkWoocheol/dev
Browse files Browse the repository at this point in the history
no message
  • Loading branch information
Park, Woocheol authored Nov 30, 2017
2 parents f5a7756 + 80c7bc6 commit b6e3218
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ publish {
userOrg = 'woocheol'
groupId = 'com.mrparkwc'
artifactId = 'simplelog'
publishVersion = '2.1.2'
publishVersion = '2.2.0'
desc = 'Simple Log'
website = 'https://github.com/ParkWoocheol/SimpleLog'
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/mrparkwc/simplelog/Print.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ static void logSeparate(LogSeparator logSeparator, String tag, String... logMess
for (String logMessage : logMessages) {
switch (logSeparator) {
case VERBOSE:
Log.d(tag, logMessage);
Log.v(tag, logMessage);
break;
case DEBUG:
Log.d(tag, logMessage);
Expand Down

0 comments on commit b6e3218

Please sign in to comment.