public IMLoggerProvider(IMLoggerStore store, IOptions <IMLoggerOptions> options) { if (store == null) { throw new ArgumentNullException(nameof(store)); } if (options == null) { throw new ArgumentNullException(nameof(options)); } _store = store; _options = options.Value; }
public static IDisposable Push(IMLoggerScope scope, IMLoggerStore store) { if (scope == null) { throw new ArgumentNullException(nameof(scope)); } if (store == null) { throw new ArgumentNullException(nameof(store)); } var temp = Current; Current = scope; Current.Parent = temp; Current.Node = new IMLoggerScopeNode() { StartTime = DateTimeOffset.UtcNow, State = Current._state, Name = Current._name }; if (Current.Parent != null) { Current.Node.Parent = Current.Parent.Node; Current.Parent.Node.Children.Add(Current.Node); } else { Current.Context.Root = Current.Node; store.AddActivity(Current.Context); } return(new DisposableAction(() => { Current.Node.EndTime = DateTimeOffset.UtcNow; Current = Current.Parent; })); }
public IMLoggerPageMiddleware(RequestDelegate next, IOptions <IMLoggerOptions> options, IMLoggerStore store) { _next = next; _options = options.Value; _store = store; }
public InMemoryLogger(string name, IMLoggerOptions options, IMLoggerStore store) { _name = name; _options = options; _store = store; }