diff --git a/src/runtime_src/core/tools/common/XBUtilities.cpp b/src/runtime_src/core/tools/common/XBUtilities.cpp index b931fbf4a0..221bac6fc7 100755 --- a/src/runtime_src/core/tools/common/XBUtilities.cpp +++ b/src/runtime_src/core/tools/common/XBUtilities.cpp @@ -495,7 +495,7 @@ XBUtilities::print_exception(const std::system_error& e) // Remove the type of error from the message. const std::string msg = std::regex_replace(e.what(), std::regex(std::string(": ") + e.code().message()), ""); - if (!msg.empty()) + if ((!msg.empty()) && (!boost::icontains(msg, "operation canceled"))) std::cerr << boost::format("ERROR: %s\n") % msg; } catch (const std::exception&)