Skip to content

Commit

Permalink
fix: log
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyoucao577 committed Oct 21, 2024
1 parent 9e4fbe0 commit 68723f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/log.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
*/
#pragma once

#define AZURE_TTS_LOG_TAG "AZURE_TTS_EXTENSION"
#define AZURE_TTS_LOG_TAG "[azure_tts_extension] "

#include "ten_utils/log/log.h"

#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__)
#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 68723f5

Please sign in to comment.