(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func TestDebug_FormatsMessage(t *testing.T) { |
| 51 | // Test that Debug can handle format strings with arguments |
| 52 | // This shouldn't panic |
| 53 | utils.Debug("Test message with %s and %d", "string", 42) |
| 54 | utils.Debug("Simple message without formatting") |
| 55 | utils.Debug("Message with special chars: %% \\n \\t") |
| 56 | } |
| 57 | |
| 58 | func TestDebug_HandlesEmptyMessage(t *testing.T) { |
| 59 | // Debug should handle empty messages gracefully |