mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Feature/CEC detection (#877)
* Add CEC functionality * Initial commit * removed libCEC from the system skip list Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
This commit is contained in:
@@ -90,7 +90,10 @@ void print_trace()
|
||||
|
||||
Logger* log = Logger::getInstance("CORE");
|
||||
char ** symbols = backtrace_symbols(addresses, size);
|
||||
for (int i = 0; i < size; ++i)
|
||||
|
||||
/* Skip first 2 frames as they are signal
|
||||
* handler and print_trace functions. */
|
||||
for (int i = 2; i < size; ++i)
|
||||
{
|
||||
std::string line = "\t" + decipher_trace(symbols[i]);
|
||||
Error(log, line.c_str());
|
||||
|
Reference in New Issue
Block a user