RequestOptions.EnableScriptLogging プロパティ

定義

Azure Cosmos DB サービスの EnableScriptLogging 現在の要求の を取得または設定します。

public bool EnableScriptLogging { get; set; }
member this.EnableScriptLogging : bool with get, set
Public Property EnableScriptLogging As Boolean

プロパティ値

次の例は、 を使用して EnableScriptLoggingストアド プロシージャのログ記録を有効にする方法を示しています。

var response = await client.ExecuteStoredProcedureAsync(
    document.SelfLink,
    new RequestOptions { EnableScriptLogging = true } );
Console.WriteLine(response.ScriptLog);

ログを記録するには、ストアの手順で次を使用します。

console.log("This is trace log");

注釈

EnableScriptLogging は、JavaScript ストアド プロシージャのログ記録を有効または無効にするために使用されます。 既定では、スクリプト ログは無効になっています。 また、応答ヘッダー (x-ms-documentdb-script-log-results) でログにアクセスすることもできます。

適用対象

こちらもご覧ください