add logging cats

This commit is contained in:
2023-01-04 20:25:41 +01:00
parent d4f3d3c4fb
commit 6852cdd046
3 changed files with 40 additions and 40 deletions

View File

@@ -83,7 +83,7 @@ void NGC_EXT_handle_group_custom_packet(
_PacketType pkg_type = static_cast<_PacketType>(*(data + curser));
curser++;
fprintf(stderr, "custom_packet [%s] %lu\n", _pkgid2str(pkg_type), length);
fprintf(stderr, "EX: custom_packet [%s] %lu\n", _pkgid2str(pkg_type), length);
if (pkg_type == INVALID) {
fprintf(stderr, "(invalid)\n");
@@ -92,7 +92,7 @@ void NGC_EXT_handle_group_custom_packet(
auto handle_fn = ngc_ext_ctx->callbacks[pkg_type];
if (handle_fn == nullptr) {
fprintf(stderr, "!!! no handler for packet\n");
fprintf(stderr, "EX: !!! no handler for packet\n");
return;
}