Microsoft.R.Host.Client.RHostLoggingExtensions.Response C# (CSharp) Method

Response() public static method

public static Response ( this log, string response, int depth ) : void
log this
response string
depth int
return void
        public static void Response(this IActionLog log, string response, int depth) {
            log.WriteLineAsync(LogVerbosity.Traffic, MessageCategory.General, Invariant($"[Response,depth={depth}]:{response}"));
        }
    }