From 7fc31d593dacd2cbe1f58989e6dbcef4d5db9a62 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 8 Mar 2022 18:49:44 +0100 Subject: Change de verbose level of a custommem message --- src/custommem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/custommem.c b/src/custommem.c index 4d4ab240..ddfe86b2 100644 --- a/src/custommem.c +++ b/src/custommem.c @@ -1085,7 +1085,7 @@ void* find47bitBlock(size_t size) } addr += sz; } while(addr<0x100000000LL); - printf_log(LOG_NONE, "Warning: cannot find a 0x%zx block in 47bits address space\n", size); + printf_log(LOG_DEBUG, "Warning: cannot find a 0x%zx block in 47bits address space\n", size); return NULL; } void* find47bitBlockNearHint(void* hint, size_t size) @@ -1100,7 +1100,7 @@ void* find47bitBlockNearHint(void* hint, size_t size) } addr += sz; } while(addr<0x800000000000LL); - printf_log(LOG_NONE, "Warning: cannot find a 0x%zx block in 32bits address space\n", size); + printf_log(LOG_DEBUG, "Warning: cannot find a 0x%zx block in 32bits address space\n", size); return NULL; } void* findBlockNearHint(void* hint, size_t size) -- cgit 1.4.1