From 91f9e0ff6e05280122f17a08f9c08bd8b99727ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 7 Jun 2017 11:09:15 +0200 Subject: [PATCH] Add CUDA error message prefix --- libethash-cuda/ethash_cuda_miner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethash-cuda/ethash_cuda_miner.cpp b/libethash-cuda/ethash_cuda_miner.cpp index 86d8ec4fd5..37c39e4ebf 100644 --- a/libethash-cuda/ethash_cuda_miner.cpp +++ b/libethash-cuda/ethash_cuda_miner.cpp @@ -205,7 +205,7 @@ void ethash_cuda_miner::listDevices() } catch(std::runtime_error const& err) { - std::cerr << err.what() << '\n'; + std::cerr << "CUDA error: " << err.what() << '\n'; } }