Merge pull request #511 from afischerdev/app-update

App update
This commit is contained in:
afischerdev 2023-03-20 16:59:13 +01:00 committed by GitHub
commit fc22892a66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 552 additions and 142 deletions

View file

@ -279,7 +279,7 @@ public class BRouterService extends Service {
private void logBundle(Bundle params) {
if (AppLogger.isLogging()) {
for (String k : params.keySet()) {
Object val = "remoteProfile".equals(k) ? "<..cut..>" : params.get(k);
Object val = "remoteProfile".equals(k) ? "<..cut..>" : params.getString(k);
String desc = "key=" + k + (val == null ? "" : " class=" + val.getClass() + " val=" + val.toString());
AppLogger.log(desc);
}