Skip to content
Snippets Groups Projects
Commit 7589dd22 authored by Fabian Kozynski's avatar Fabian Kozynski Committed by Automerger Merge Worker
Browse files

Merge "Add logging when tile cannot be found" into udc-dev am: 53466c00

parents de7c62d3 53466c00
No related branches found
No related tags found
No related merge requests found
......@@ -344,9 +344,26 @@ public class TileServices extends IQSService.Stub {
verifyCaller(customTile);
return customTile.getQsTile();
}
Log.e(TAG, "Tile for token " + token + "not found. "
+ "Tiles in map: " + availableTileComponents());
return null;
}
private String availableTileComponents() {
StringBuilder sb = new StringBuilder("[");
synchronized (mServices) {
mTokenMap.forEach((iBinder, customTile) ->
sb.append(iBinder.toString())
.append(":")
.append(customTile.getComponent().flattenToShortString())
.append(":")
.append(customTile.getUser())
.append(","));
}
sb.append("]");
return sb.toString();
}
@Override
public void startUnlockAndRun(IBinder token) {
CustomTile customTile = getTileForToken(token);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment