fix: Remove debug logging that interfered with expect tests

This commit is contained in:
2025-12-03 02:38:33 +03:00
parent 0c38ca0c50
commit d09adad0e1
4 changed files with 14 additions and 11 deletions

View File

@@ -21,6 +21,7 @@
*/
#include <stdlib.h>
#include <stdio.h>
#include <glib.h>
#include <string.h>
@@ -105,5 +106,9 @@ prime_for_query(const char *query, char *stream)
XMPPStanza*
prime_get_for_query(const char *query)
{
if (!querystubs) {
return NULL;
}
return g_hash_table_lookup(querystubs, query);
}