Skip to content

Commit

Permalink
Mapping ORT verbose log level to QNN verbose log level (#23673)
Browse files Browse the repository at this point in the history
### Description
Mapping ORT verbose log level to QNN verbose log level instead of debug log level. QNN debug log level is suppose for debug build only. Which mean ORT is supposed to not able to see any debug logs from QNN release build.
  • Loading branch information
HectorSVC authored Feb 13, 2025
1 parent 545b77d commit 9d45b9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ QnnLog_Level_t QnnBackendManager::MapOrtSeverityToQNNLogLevel(logging::Severity
// Map ORT log severity to Qnn log level
switch (ort_log_level) {
case logging::Severity::kVERBOSE:
return QNN_LOG_LEVEL_DEBUG;
return QNN_LOG_LEVEL_VERBOSE;
case logging::Severity::kINFO:
return QNN_LOG_LEVEL_INFO;
case logging::Severity::kWARNING:
Expand Down

0 comments on commit 9d45b9a

Please sign in to comment.