-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to set verbosity via command line arguments (#11)
* Add ability to set verbosity via command line arguments * Remove IMetalsharpFile and IMetalsharpFileCollection * Remove tab from MetalsharpProject * Format XML comments in MetalsharpConfiguration
- Loading branch information
Showing
23 changed files
with
163 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
namespace Metalsharp.Logging; | ||
using System; | ||
|
||
namespace Metalsharp.Logging; | ||
|
||
/// <summary> | ||
/// The verbosity level for log messages. | ||
/// </summary> | ||
[Flags] | ||
public enum LogLevel | ||
{ | ||
/// <summary> | ||
/// `Debug` includes every loggable event useful when debugging. | ||
/// </summary> | ||
Debug = 0, | ||
Debug = 0x0, | ||
|
||
/// <summary> | ||
/// `Info` includes every meaningful event while executing. | ||
/// </summary> | ||
Info = 1, | ||
Info = 0x1, | ||
|
||
/// <summary> | ||
/// `Error` includes any events that are unexpected or may be unintended by the user. | ||
/// </summary> | ||
Error = 2, | ||
Error = 0x2, | ||
|
||
/// <summary> | ||
/// `Fatal` includes any events that prevent continued execution. | ||
/// </summary> | ||
Fatal = 3, | ||
Fatal = 0x4, | ||
|
||
/// <summary> | ||
/// `None` prevents any logging. | ||
/// </summary> | ||
None = 4, | ||
None = 0x8, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.