Remove LogLevel enum (#3203)

This commit is contained in:
Mikael Mengistu 2018-10-26 10:50:24 -07:00 committed by GitHub
parent fc3a1fee61
commit 2ad1996220
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 17 deletions

View File

@ -1,17 +0,0 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
package com.microsoft.signalr;
public enum LogLevel {
Trace(0),
Debug(1),
Information(2),
Warning(3),
Error(4),
Critical(5),
None(6);
public int value;
LogLevel(int id) { this.value = id; }
}