debug notification preferences
This commit is contained in:
parent
73e19d2520
commit
184ec6c290
|
@ -559,6 +559,12 @@ public final class DBCassandraAstyanaxImpl implements DatabookStore {
|
|||
*/
|
||||
@Override
|
||||
public boolean setUserNotificationPreferences(String userid, Map<NotificationType, NotificationChannelType[]> enabledChannels) {
|
||||
for(NotificationType notificationType: enabledChannels.keySet()){
|
||||
_log.info("Type: " + notificationType.toString());
|
||||
for(NotificationChannelType channelType: enabledChannels.get(notificationType)){
|
||||
_log.info(channelType.toString());
|
||||
}
|
||||
}
|
||||
return libClient.setUserNotificationPreferencesLib(userid, enabledChannels);
|
||||
}
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue