Skip to content

Commit 7654a60

Browse files
Merge pull request #139 from velocitycareerlabs/VL-8411-v2.6.3
v2.6.3
2 parents 7edaa20 + af75879 commit 7654a60

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

VCL/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
defaultConfig {
1313
minSdk 24
1414
targetSdk 34
15-
versionName "2.6.0"
16-
versionCode 148
15+
versionName "2.6.3"
16+
versionCode 149
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
consumerProguardFiles "consumer-rules.pro"
1919
}

VCL/src/main/java/io/velocitycareerlabs/impl/VCLImpl.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
package io.velocitycareerlabs.impl
99

1010
import android.content.Context
11+
import android.util.Log
1112
import io.velocitycareerlabs.api.VCL
1213
import io.velocitycareerlabs.api.entities.*
1314
import io.velocitycareerlabs.api.entities.error.VCLError
@@ -555,6 +556,6 @@ internal fun VCLImpl.logError(message: String = "", error: VCLError) {
555556
}
556557

557558
internal fun VCLImpl.printVersion() {
558-
VCLLog.d("VCL", "Version: ${GlobalConfig.VersionName}")
559-
VCLLog.d("VCL", "Build: ${GlobalConfig.VersionCode}")
559+
Log.i("VCL", "Version: ${GlobalConfig.VersionName}")
560+
Log.i("VCL", "Build: ${GlobalConfig.VersionCode}")
560561
}

0 commit comments

Comments
 (0)