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

Request() public static method

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