diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-03-08 18:49:44 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-03-08 18:49:44 +0100 |
| commit | 7fc31d593dacd2cbe1f58989e6dbcef4d5db9a62 (patch) | |
| tree | 80b87431815d7c2cc66e284a07639ee5c9e84fb8 /src/custommem.c | |
| parent | 010f3d9748d32fe6b0895847dc82d276bba5b672 (diff) | |
| download | box64-7fc31d593dacd2cbe1f58989e6dbcef4d5db9a62.tar.gz box64-7fc31d593dacd2cbe1f58989e6dbcef4d5db9a62.zip | |
Change de verbose level of a custommem message
Diffstat (limited to 'src/custommem.c')
| -rw-r--r-- | src/custommem.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) |