1. log info fix

This commit is contained in:
vadym 2020-08-06 23:25:59 -07:00
parent e7f5d528a9
commit eda505a6ff

View File

@ -141,18 +141,18 @@ class MainActivity : AppCompatActivity() {
} }
val c: Class<*> = dummy.Dummy::class.java val c: Class<*> = dummy.Dummy::class.java
val methods: Array<Method> = c.declaredMethods val methods: Array<Method> = c.declaredMethods
Log.d(TAG,"Getting dummy.Dummy class methods list") Log.i(TAG,"Getting dummy.Dummy class methods list")
if(methods.isEmpty()){ if(methods.isEmpty()){
Log.d(TAG,"No class methods found in dummy.Dummy") Log.i(TAG,"No class methods found in dummy.Dummy")
} else { } else {
for (m in methods) { for (m in methods) {
Log.d(TAG, "The method is: " + m.toString()) Log.i(TAG, "The method is: " + m.toString())
} }
} }
} }
private fun stopVpn(){ private fun stopVpn(){
Log.d(TAG,"Stop") Log.i(TAG,"Stop")
val intent = Intent(this, YggdrasilTunService::class.java) val intent = Intent(this, YggdrasilTunService::class.java)
val TASK_CODE = 100 val TASK_CODE = 100
val pi = createPendingResult(TASK_CODE, intent, 0) val pi = createPendingResult(TASK_CODE, intent, 0)
@ -162,7 +162,7 @@ class MainActivity : AppCompatActivity() {
} }
private fun startVpn(){ private fun startVpn(){
Log.d(TAG,"Start") Log.i(TAG,"Start")
val intent= VpnService.prepare(this) val intent= VpnService.prepare(this)
if (intent!=null){ if (intent!=null){
startActivityForResult(intent, VPN_REQUEST_CODE) startActivityForResult(intent, VPN_REQUEST_CODE)
@ -172,7 +172,7 @@ class MainActivity : AppCompatActivity() {
} }
private fun updateDNS(){ private fun updateDNS(){
Log.d(TAG,"Update DNS") Log.i(TAG,"Update DNS")
val intent = Intent(this, YggdrasilTunService::class.java) val intent = Intent(this, YggdrasilTunService::class.java)
val TASK_CODE = 100 val TASK_CODE = 100
val pi = createPendingResult(TASK_CODE, intent, 0) val pi = createPendingResult(TASK_CODE, intent, 0)