Skip to content

Commit 7c4f065

Browse files
hlefnwf
authored andcommitted
tcpip: disable debug output in the error handler by default.
This reduces code size by about 1.8 KB. We should only enable debug output if we really need it. Signed-off-by: Hugo Lefeuvre <[email protected]>
1 parent e2f2597 commit 7c4f065

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/tcpip/tcpip_error_handler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#include <simulator.h>
1313
#include <vector>
1414

15-
using DebugErrorHandler = ConditionalDebug<true, "TCP/IP Stack error handler">;
15+
using DebugErrorHandler = ConditionalDebug<false, "TCP/IP Stack error handler">;
1616
using CHERI::Capability;
1717

1818
/**

0 commit comments

Comments
 (0)