1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-24 20:48:01 +00:00

remove redundant log

This commit is contained in:
Xiangyue Cai
2019-09-09 13:36:45 +08:00
parent d4d026d56f
commit c21d662cbe

View File

@@ -63,10 +63,8 @@ json_t *
seaf_mq_manager_pop_event (SeafMqManager *mgr, const char *channel)
{
GAsyncQueue *async_queue = g_hash_table_lookup (mgr->priv->chans, channel);
if (!async_queue) {
seaf_warning ("Unkonwn message channel %s.\n", channel);
if (!async_queue)
return NULL;
}
return g_async_queue_try_pop (async_queue);
}