Notify complete exception

This commit is contained in:
M66B 2018-09-03 04:46:44 +00:00
parent 9490c22914
commit f06b0c10e6
1 changed files with 2 additions and 0 deletions

View File

@ -340,6 +340,8 @@ public class ServiceSynchronize extends LifecycleService {
.setCategory(Notification.CATEGORY_ERROR)
.setVisibility(Notification.VISIBILITY_SECRET);
builder.setStyle(new Notification.BigTextStyle().bigText(ex.toString()));
return builder;
}