View Single Post
Posts: 207 | Thanked: 482 times | Joined on Mar 2016
#425
that's odd, somehow group is not suppressed and it overrides original one. group is always generated after original one.
Can you capture the debug log while notification is delivered - the one which is vibrating and not showing (that will be insert/remove) and the one with subsequent mail? To capture that you can use pebble sdk tool and dev connection (enable dev connection and use pebble logs --phone <phone ip>).
If you have no sdk or cannot install it - then old school ssh to phone and run daemon manually will do (need to disable service first).
I need logs after firmware update message - a section starting with watchfish:Notification Notification(sender=... up to latest line of doMaintenance: Executing maintenance cycle (with timestamps) - may need to wait till that one for up to one minute (normally) or less (if something is wrong).

A color is different for pre-defined groups of messages, and is red for unknown. Previously the same logic was applied - but it was not working properly so everything was falling to default and was red.
Code:
    {"generic",{"system://images/NOTIFICATION_GENERIC","red"}},
    {"email",{"system://images/GENERIC_EMAIL","gray","E-Mails"}},
    {"gmail",{"system://images/NOTIFICATION_GMAIL","red","GMail"}},
    {"sms",{"system://images/GENERIC_SMS","lightblue","SMS"}},
    {"hangouts",{"system://images/NOTIFICATION_GOOGLE_HANGOUTS","green","Hangouts"}},
    {"facebook",{"system://images/NOTIFICATION_FACEBOOK","blue","Facebook"}},
    {"twitter",{"system://images/NOTIFICATION_TWITTER","blue","Twitter"}},
    {"telegram",{"system://images/NOTIFICATION_TELEGRAM","cyan","Telegram"}},
    {"whatsapp",{"system://images/NOTIFICATION_WHATSAPP","green","WhatsApp"}},
    {"weather",{"system://images/TIMELINE_WEATHER","indigo","Weather"}},
    {"reminder",{"system://images/NOTIFICATION_REMINDER","red","Reminders"}},
    {"calls",{"system://images/TIMELINE_MISSED_CALL","red","Calls"}},
    {"music",{"system://images/MUSIC_EVENT","red"}},
    {"alarm",{"system://images/ALARM_CLOCK","red"}},
    {"unknown",{"system://images/NOTIFICATION_FLAG","red"}}
 

The Following User Says Thank You to ruff For This Useful Post: