Skip to content

Commit

Permalink
feat: upgrade ten_runtime to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
plutoless committed Oct 18, 2024
1 parent e095e95 commit a22c835
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"type": "system",
"name": "ten_runtime",
"version": "0.2"
"version": "0.3"
},
{
"type": "system",
Expand Down
8 changes: 4 additions & 4 deletions src/log.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "ten_utils/log/log.h"

#define AZURE_TTS_LOGI(...) TEN_LOG_WRITE(TEN_LOG_INFO, AZURE_TTS_LOG_TAG, __VA_ARGS__)
#define AZURE_TTS_LOGE(...) TEN_LOG_WRITE(TEN_LOG_ERROR, AZURE_TTS_LOG_TAG, __VA_ARGS__)
#define AZURE_TTS_LOGW(...) TEN_LOG_WRITE(TEN_LOG_WARN, AZURE_TTS_LOG_TAG, __VA_ARGS__)
#define AZURE_TTS_LOGD(...) TEN_LOG_WRITE(TEN_LOG_DEBUG, AZURE_TTS_LOG_TAG, __VA_ARGS__)
#define AZURE_TTS_LOGI(...) TEN_LOGI(AZURE_TTS_LOG_TAG, __VA_ARGS__)
#define AZURE_TTS_LOGE(...) TEN_LOGE(AZURE_TTS_LOG_TAG, __VA_ARGS__)
#define AZURE_TTS_LOGW(...) TEN_LOGW(AZURE_TTS_LOG_TAG, __VA_ARGS__)
#define AZURE_TTS_LOGD(...) TEN_LOGD(AZURE_TTS_LOG_TAG, __VA_ARGS__)

0 comments on commit a22c835

Please sign in to comment.