Skip to content

Commit

Permalink
v1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
orhanobut committed Apr 13, 2015
1 parent 0219996 commit 99d3aaf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Logger provides :

### Gradle
```groovy
compile 'com.orhanobut:logger:1.6'
compile 'com.orhanobut:logger:1.7'
```

### Current Log system
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# org.gradle.parallel=true

#VERSION_NAME=1.0-SNAPSHOT
VERSION_NAME=1.6
VERSION_CODE=7
VERSION_NAME=1.7
VERSION_CODE=8
GROUP=com.orhanobut

POM_DESCRIPTION=Simple,pretty and powerful log
Expand Down
3 changes: 3 additions & 0 deletions logger/src/main/java/com/orhanobut/logger/LoggerPrinter.java
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ private void logHeaderContent(int logType, String tag, int methodCount) {

for (int i = methodCount; i > 0; i--) {
int stackIndex = i + stackOffset;
if (stackIndex >= trace.length) {
continue;
}
StringBuilder builder = new StringBuilder();
builder.append("║ ")
.append(level)
Expand Down

0 comments on commit 99d3aaf

Please sign in to comment.