diff --git a/main/channel.c b/main/channel.c
index d49344ad2f0eafa025c3e19a9e06e627b6d7bb92..8380cf8b3eb9c719a1a023fd0605be4bcd2ef2ea 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -3115,7 +3115,7 @@ struct ast_channel *ast_request(const char *type, int format, void *data, int *c
 		fmt = format & AST_FORMAT_AUDIO_MASK;
 		res = ast_translator_best_choice(&fmt, &capabilities);
 		if (res < 0) {
-			ast_log(LOG_WARNING, "No translator path exists for channel type %s (native %d) to %d\n", type, chan->tech->capabilities, format);
+			ast_log(LOG_WARNING, "No translator path exists for channel type %s (native 0x%x) to 0x%x\n", type, chan->tech->capabilities, format);
 			*cause = AST_CAUSE_BEARERCAPABILITY_NOTAVAIL;
 			AST_RWLIST_UNLOCK(&channels);
 			return NULL;