update mnml service file for syslog
This commit is contained in:
+3
-3
@@ -77,11 +77,11 @@ fn handle_notification(n: Notification, pool: &PgPool, events: &Sender<Event>) {
|
||||
|
||||
let msg = match n.action {
|
||||
Action::Delete => {
|
||||
warn!("unimplemented delete notification {:?}", n);
|
||||
// warn!("unimplemented delete notification {:?}", n);
|
||||
None
|
||||
},
|
||||
Action::Insert => {
|
||||
warn!("unimplemented insert notification {:?}", n);
|
||||
// warn!("unimplemented insert notification {:?}", n);
|
||||
None
|
||||
},
|
||||
Action::Update => match n.table {
|
||||
@@ -92,7 +92,7 @@ fn handle_notification(n: Notification, pool: &PgPool, events: &Sender<Event>) {
|
||||
Table::Games =>
|
||||
Some(Event::Push(n.id, RpcMessage::GameState(game::game_get(&mut tx, n.id).unwrap()))),
|
||||
_ => {
|
||||
warn!("unimplemented update notification {:?}", n);
|
||||
// warn!("unimplemented update notification {:?}", n);
|
||||
None
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user