File tree 4 files changed +5
-7
lines changed
app/src/main/java/com/orhanobut/loggersample
4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Logger provides :
15
15
16
16
### Gradle
17
17
``` groovy
18
- compile 'com.orhanobut:logger:1.3 '
18
+ compile 'com.orhanobut:logger:1.4 '
19
19
```
20
20
21
21
### Current Log system
Original file line number Diff line number Diff line change 4
4
import android .support .v7 .app .ActionBarActivity ;
5
5
import android .util .Log ;
6
6
7
- import com .orhanobut .logger .LogLevel ;
8
7
import com .orhanobut .logger .Logger ;
9
8
10
9
@@ -18,8 +17,7 @@ protected void onCreate(Bundle savedInstanceState) {
18
17
setContentView (R .layout .activity_main );
19
18
20
19
Logger .init ()
21
- .setMethodCount (1 )
22
- .setLogLevel (LogLevel .NONE );
20
+ .setMethodCount (1 );
23
21
24
22
printNormalLog ();
25
23
printPretty ();
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
jcenter()
6
6
}
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:1.0.1 '
8
+ classpath ' com.android.tools.build:gradle:1.1.0 '
9
9
10
10
// NOTE: Do not place your application dependencies here; they belong
11
11
// in the individual module build.gradle files
Original file line number Diff line number Diff line change 18
18
# org.gradle.parallel=true
19
19
20
20
# VERSION_NAME=1.0-SNAPSHOT
21
- VERSION_NAME =1.3
22
- VERSION_CODE =4
21
+ VERSION_NAME =1.4
22
+ VERSION_CODE =5
23
23
GROUP =com.orhanobut
24
24
25
25
POM_DESCRIPTION =Simple,pretty and powerful log
You can’t perform that action at this time.
0 commit comments