changed printStackTrace to log

This commit is contained in:
afischerdev 2024-07-12 10:34:47 +02:00
parent f289b0cd83
commit 1f2f655863
4 changed files with 23 additions and 15 deletions

View file

@ -46,6 +46,8 @@ import btools.router.RoutingHelper;
public class BInstallerActivity extends AppCompatActivity { public class BInstallerActivity extends AppCompatActivity {
private static final String TAG = "BInstallerActivity";
private static final int DIALOG_CONFIRM_DELETE_ID = 1; private static final int DIALOG_CONFIRM_DELETE_ID = 1;
private static final int DIALOG_CONFIRM_NEXTSTEPS_ID = 2; private static final int DIALOG_CONFIRM_NEXTSTEPS_ID = 2;
private static final int DIALOG_CONFIRM_GETDIFFS_ID = 3; private static final int DIALOG_CONFIRM_GETDIFFS_ID = 3;
@ -216,7 +218,7 @@ public class BInstallerActivity extends AppCompatActivity {
Object data; Object data;
Toast.makeText(this, R.string.msg_too_much_data, Toast.LENGTH_LONG).show(); Toast.makeText(this, R.string.msg_too_much_data, Toast.LENGTH_LONG).show();
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
return; return;
} }
@ -242,10 +244,9 @@ public class BInstallerActivity extends AppCompatActivity {
//WorkManager.getInstance(getApplicationContext()).cancelWorkById(downloadWorkRequest.getId()); //WorkManager.getInstance(getApplicationContext()).cancelWorkById(downloadWorkRequest.getId());
} }
} catch (ExecutionException e) { } catch (ExecutionException e) {
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
} catch (InterruptedException e) { } catch (InterruptedException e) {
Log.d("worker", "canceled " + e.getMessage()); Log.d(TAG, "canceled " + e.getMessage());
//e.printStackTrace();
} }
workManager workManager
@ -516,10 +517,10 @@ public class BInstallerActivity extends AppCompatActivity {
} }
return running; return running;
} catch (ExecutionException e) { } catch (ExecutionException e) {
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
return false; return false;
} catch (InterruptedException e) { } catch (InterruptedException e) {
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
return false; return false;
} }
} }

View file

@ -48,6 +48,8 @@ import btools.util.CheapRuler;
public class BRouterView extends View { public class BRouterView extends View {
private static final String TAG = "BRouterView";
private final int memoryClass; private final int memoryClass;
RoutingEngine cr; RoutingEngine cr;
private int imgw; private int imgw;
@ -148,8 +150,8 @@ public class BRouterView extends View {
try { try {
td.mkdirs(); td.mkdirs();
} catch (Exception e) { } catch (Exception e) {
Log.d("BRouterView", "Error creating base directory: " + e.getMessage()); Log.d(TAG, "Error creating base directory: " + e.getMessage());
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
} }
if (!td.isDirectory()) { if (!td.isDirectory()) {
@ -173,7 +175,7 @@ public class BRouterView extends View {
// new init is done move old files // new init is done move old files
if (waitingForMigration) { if (waitingForMigration) {
Log.d("BR", "path " + oldMigrationPath + " " + basedir); Log.d(TAG, "path " + oldMigrationPath + " " + basedir);
Thread t = new Thread(new Runnable() { Thread t = new Thread(new Runnable() {
@Override @Override
public void run() { public void run() {
@ -184,7 +186,7 @@ public class BRouterView extends View {
try { try {
t.join(500); t.join(500);
} catch (InterruptedException e) { } catch (InterruptedException e) {
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
} }
waitingForMigration = false; waitingForMigration = false;
} }
@ -333,9 +335,9 @@ public class BRouterView extends View {
out.close(); out.close();
} catch (FileNotFoundException fileNotFoundException) { } catch (FileNotFoundException fileNotFoundException) {
Log.e("tag", fileNotFoundException.getMessage()); Log.e(TAG, fileNotFoundException.getMessage());
} catch (Exception e) { } catch (Exception e) {
Log.e("tag", e.getMessage()); Log.e(TAG, e.getMessage());
} }
} }

View file

@ -7,6 +7,7 @@ import android.content.SharedPreferences;
import android.content.res.Configuration; import android.content.res.Configuration;
import android.os.Build; import android.os.Build;
import android.os.Bundle; import android.os.Bundle;
import android.util.Log;
import android.window.OnBackInvokedCallback; import android.window.OnBackInvokedCallback;
import android.window.OnBackInvokedDispatcher; import android.window.OnBackInvokedDispatcher;
@ -146,7 +147,7 @@ public class RoutingParameterDialog extends AppCompatActivity {
list.add(p); list.add(p);
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
} }
} }
} while (line != null); } while (line != null);
@ -278,7 +279,7 @@ public class RoutingParameterDialog extends AppCompatActivity {
sparams = i.getExtras().getString("PARAMS_VALUES", ""); sparams = i.getExtras().getString("PARAMS_VALUES", "");
} }
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
} }
getPreferenceManager().setSharedPreferencesName("prefs_profile_" + profile_hash); getPreferenceManager().setSharedPreferencesName("prefs_profile_" + profile_hash);

View file

@ -2,6 +2,7 @@ package btools.routingapp;
import android.content.Context; import android.content.Context;
import android.content.res.AssetManager; import android.content.res.AssetManager;
import android.util.Log;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.File; import java.io.File;
@ -13,6 +14,9 @@ import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream; import java.util.zip.ZipInputStream;
public class ServerConfig { public class ServerConfig {
private static final String TAG = "ServerConfig";
private static String mServerConfigName = "serverconfig.txt"; private static String mServerConfigName = "serverconfig.txt";
private String mSegmentUrl = "https://brouter.de/brouter/segments4/"; private String mSegmentUrl = "https://brouter.de/brouter/segments4/";
@ -52,7 +56,7 @@ public class ServerConfig {
} }
} }
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); Log.e(TAG, Log.getStackTraceString(e));
} finally { } finally {
try { try {
if (br != null) br.close(); if (br != null) br.close();