ドキュメント

​
​

Development

User Acquisition

Monetization

産業

Vivox Core SDK

Vivox Core SDK

このページは選択した言語では使用できません。
Vivox
​
​
Vivox Core SDK
  • Overview
  • Before you begin
  • Get started
  • Release notes
  • Developer Guide
    • Client SDK basics
    • Channels
    • Presence management
    • Messaging
    • Manage audio
    • Couch co-op
    • Android app development
    • iOS app development
    • macOS app development
    • Windows app development
    • Real-time recording
    • Speech-to-text audio transcription
    • Text-to-speech
    • Troubleshooting
      • Voice activity detection
      • Codec comparison
      • Vivox Client SDK logs
      • Vivox SDK error codes
  • Reference
  • Privacy overview
  1. Vivox Core SDK documentation
  2. Troubleshooting

Vivox Client SDK logs

Learn about client SDK basics.
読み終わるまでの所要時間 1 分
最終更新 8ヶ月前

The Vivox SDK produces log information that is useful for diagnosing issues both during development and in the field. We recommend that you include Vivox log information in the application logs that are sent to Vivox.
The game client can get Vivox log information through a callback that is set during
vx_initialize3()
.
The
vx_log_level
enum includes the following values:
  • log_none = -1
  • log_error = 0
  • log_warning = 1
  • log_info = 2
  • log_debug = 3
  • log_trace = 4
  • log_all = 5
The following code displays an example of how to get Vivox SDK log information:
void OnLog(void *callback_handle, vx_log_level level, const char *source, const char *message){ // The following line is for demonstration only. Because fprintf can block, do not call it from any SDK callback. fprintf(stderr, "%s: %s\n", vx_get_log_level_string(level), message);}. . .vx_sdk_config_t config;vx_get_default_config3(&config, sizeof(config));config.pf_logging_callback = OnLog;vx_initialize3(&config, sizeof(config));
注
The
pf_logging_callback
method is called directly from Vivox SDK threads. This callback must not block, otherwise, the user's audio experience could be negatively impacted. Applications that use
pf_logging_called
must call it immediately after initializing the Vivox SDK.

Copyright © 2026 Unity Technologies
法規事項プライバシーポリシークッキーDocumentation Terms of Use私の個人情報を販売または共有しないプライバシーに関する選択 (クッキー設定)

"Unity" の名称、Unity のロゴ、およびその他の Unity の商標は、米国およびその他の国における Unity Technologies またはその関係会社の商標または登録商標です (詳しくはこちら)。その他の名称またはブランドは該当する所有者の商標です。

一部のページは利便性向上のため機械翻訳を使用しており、内容に不正確な表現が含まれる場合があります。内容に齟齬または不一致が生じた場合は、英語版を正本とします。


    このページの問題を報告する