File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -427,21 +427,21 @@ Slab::~Slab() {
427
427
try {
428
428
unregSlab (*this );
429
429
} catch (std::exception &e) {
430
- std::cout << " DisjointPool: unexpected error: " << e.what () << " \n " ;
430
+ std::cerr << " DisjointPool: unexpected error: " << e.what () << " \n " ;
431
431
}
432
432
433
433
try {
434
434
memoryProviderFree (bucket.getMemHandle (), MemPtr);
435
435
} catch (MemoryProviderError &e) {
436
- std::cout << " DisjointPool: error from memory provider: " << e.code
436
+ std::cerr << " DisjointPool: error from memory provider: " << e.code
437
437
<< " \n " ;
438
438
if (e.code == UMF_RESULT_ERROR_MEMORY_PROVIDER_SPECIFIC) {
439
439
const char *message = " " ;
440
440
int error = 0 ;
441
441
442
442
umfMemoryProviderGetLastNativeError (
443
443
umfGetLastFailedMemoryProvider (), &message, &error);
444
- std::cout << " Native error msg: " << message
444
+ std::cerr << " Native error msg: " << message
445
445
<< " , native error code: " << error << std::endl;
446
446
}
447
447
}
You can’t perform that action at this time.
0 commit comments