Improve logging for foreground service exception

Co-authored-by: adbenitez <24558636+adbenitez@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-07 14:50:08 +00:00
parent 53aa3c3ccb
commit 5aabb40c48
@@ -91,7 +91,7 @@ public final class FetchForegroundService extends Service {
try {
startForeground(NotificationCenter.ID_FETCH, notification);
} catch (Exception e) {
Log.w(TAG, "Failed to start foreground service: " + e);
Log.w(TAG, "Failed to start foreground service", e);
stopSelf();
return;
}