void TLSvaLog()

in Classes/TLSLoggingService.m [544:564]


void TLSvaLog(TLSLoggingService *service,
              TLSLogLevel level,
              NSString *channel,
              NSString *file,
              NSString *function,
              NSInteger line,
              id contextObject,
              TLSLogMessageOptions options,
              NSString *format,
              va_list arguments)
{
    [(service ?: sLoggingService) _logDispatchWithLevel:level
                                                channel:channel
                                                   file:file
                                               function:function
                                                   line:line
                                                context:contextObject
                                                options:options
                                                 format:format
                                              arguments:arguments];
}