Skip to content

Commit

Permalink
removed http logging info
Browse files Browse the repository at this point in the history
  • Loading branch information
iankang committed Oct 27, 2021
1 parent 8e150d9 commit 8e63e04
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main/java/com/mixsteroids/mixjar/main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.mixsteroids.mixjar

fun main(){
val mixCloudServiceImpl = MixCloud()
// mixCloudServiceImpl.getShow("spartacus","party-time")
mixCloudServiceImpl.getShow("spartacus","party-time",1)
// mixCloudServiceImpl.getUser("DjChief254")
// mixCloudServiceImpl.getUserCloudCast("DjChief254",2)
// mixCloudServiceImpl.getCity("nairobi");
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mixsteroids/mixjar/network/Network.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Network {

private fun getOkHttpClient():OkHttpClient{
return OkHttpClient.Builder()
.addInterceptor(getLoggingInterceptor())
// .addInterceptor(getLoggingInterceptor())
.readTimeout(2,TimeUnit.MINUTES)
.connectTimeout(2,TimeUnit.MINUTES)
.build()
Expand Down

0 comments on commit 8e63e04

Please sign in to comment.