Skip to content

Commit 9aa9061

Browse files
committedMar 28, 2015
v1.4 release
1 parent dfe2d93 commit 9aa9061

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Logger provides :
1515

1616
### Gradle
1717
```groovy
18-
compile 'com.orhanobut:logger:1.3'
18+
compile 'com.orhanobut:logger:1.4'
1919
```
2020

2121
### Current Log system

‎app/src/main/java/com/orhanobut/loggersample/MainActivity.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import android.support.v7.app.ActionBarActivity;
55
import android.util.Log;
66

7-
import com.orhanobut.logger.LogLevel;
87
import com.orhanobut.logger.Logger;
98

109

@@ -18,8 +17,7 @@ protected void onCreate(Bundle savedInstanceState) {
1817
setContentView(R.layout.activity_main);
1918

2019
Logger.init()
21-
.setMethodCount(1)
22-
.setLogLevel(LogLevel.NONE);
20+
.setMethodCount(1);
2321

2422
printNormalLog();
2523
printPretty();

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.0.1'
8+
classpath 'com.android.tools.build:gradle:1.1.0'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files

‎gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# org.gradle.parallel=true
1919

2020
#VERSION_NAME=1.0-SNAPSHOT
21-
VERSION_NAME=1.3
22-
VERSION_CODE=4
21+
VERSION_NAME=1.4
22+
VERSION_CODE=5
2323
GROUP=com.orhanobut
2424

2525
POM_DESCRIPTION=Simple,pretty and powerful log

0 commit comments

Comments
 (0)