Exemplo n.º 1
0
        public void Info(string message, Exception exception)
        {
            var logEvent = new LogEvent.Builder(_sourceActorType, message).WithSourceActorAddress(_sourceActorAddress).WithException(exception).Build();

            Info(logEvent);
        }
Exemplo n.º 2
0
        public void Warn(string message)
        {
            var logEvent = new LogEvent.Builder(_sourceActorType, message).WithSourceActorAddress(_sourceActorAddress).Build();

            Warn(logEvent);
        }
Exemplo n.º 3
0
        public void Info(string message, params object[] args)
        {
            var logEvent = new LogEvent.Builder(_sourceActorType, message).WithSourceActorAddress(_sourceActorAddress).WithArgs(args).Build();

            Info(logEvent);
        }