Reacting to disposable logger provider
This commit is contained in:
parent
a3f0ee3330
commit
289182b872
|
|
@ -1,6 +1,7 @@
|
||||||
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
||||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
||||||
|
|
||||||
|
using System;
|
||||||
using Microsoft.Framework.Logging;
|
using Microsoft.Framework.Logging;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Authentication.Tests.OpenIdConnect
|
namespace Microsoft.AspNet.Authentication.Tests.OpenIdConnect
|
||||||
|
|
@ -31,6 +32,10 @@ namespace Microsoft.AspNet.Authentication.Tests.OpenIdConnect
|
||||||
return _logger;
|
return _logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
public InMemoryLogger Logger { get { return _logger; } }
|
public InMemoryLogger Logger { get { return _logger; } }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue