Merge pull request #3212 from dotnet-maestro-bot/merge/release/2.2-to-master

[automated] Merge branch 'release/2.2' => 'master'
This commit is contained in:
Mikael Mengistu 2018-10-26 12:56:44 -07:00 committed by GitHub
commit 64222fa735
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; }
}