comparison Core/MultiThreading/RunnableWorkersPool.cpp @ 2291:b9856b1615d6

typo
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 27 Jun 2017 12:59:36 +0200
parents 4d500a555aad
children 878b59270859
comparison
equal deleted inserted replaced
2290:4d500a555aad 2291:b9856b1615d6
77 { 77 {
78 LOG(ERROR) << "Not enough memory to handle some runnable object"; 78 LOG(ERROR) << "Not enough memory to handle some runnable object";
79 } 79 }
80 catch (std::exception& e) 80 catch (std::exception& e)
81 { 81 {
82 LOG(ERROR) << "Std excetion while handling some runnable object: " << e.what(); 82 LOG(ERROR) << "std::exception while handling some runnable object: " << e.what();
83 } 83 }
84 catch (...) 84 catch (...)
85 { 85 {
86 LOG(ERROR) << "Native exception while handling some runnable object"; 86 LOG(ERROR) << "Native exception while handling some runnable object";
87 } 87 }