Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logging/v2 #6

Merged
merged 4 commits into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CommonsLibrary.Logging/CommonsLibrary.Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Alex.CommonsLibrary.Logging</PackageId>
<Title>C# Logging Agent</Title>
<Version>1.0.1</Version>
<Version>2.0.0</Version>
<Authors>Alex O'Brien</Authors>
<Description>This is the logging component of my open source C# library</Description>
<Copyright>Open Source</Copyright>
Expand Down
18 changes: 0 additions & 18 deletions CommonsLibrary.Logging/Error.cs

This file was deleted.

36 changes: 28 additions & 8 deletions CommonsLibrary.Logging/Log.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,36 @@
namespace CommonsLibrary.Logging
using System;
using System.IO;

namespace CommonsLibrary.Logging
{
public class Log : LogBuilder
public class Log
{
public Log(string error, string logMessage)
private readonly string _filePath;
private static Log? _logger;

private Log(string filePath) => _filePath = filePath;
public static Log GetLogger(string filePath) => _logger ??= new Log(filePath);

private void WriteLog(LogLevel level, string message, Exception? exception = null)
{
log = new Logs("LOG", error, logMessage);
using StreamWriter writer = new StreamWriter(_filePath, true);
writer.WriteLine($"{DateTime.Now} {level} {exception} {message}");
}

public override void BuildLogMessage()
{ }
public void Info(string message) =>
WriteLog(LogLevel.Info, message);

public void Warning(string message) =>
WriteLog(LogLevel.Warning, message);

public override void BuildError()
{ }
public void Error(string message, Exception exception) =>
WriteLog(LogLevel.Error, message, exception);

private enum LogLevel
{
Info,
Warning,
Error,
}
}
}
12 changes: 0 additions & 12 deletions CommonsLibrary.Logging/LogBuilder.cs

This file was deleted.

11 changes: 0 additions & 11 deletions CommonsLibrary.Logging/LogDirector.cs

This file was deleted.

31 changes: 0 additions & 31 deletions CommonsLibrary.Logging/Logs.cs

This file was deleted.

5 changes: 0 additions & 5 deletions CommonsLibrary.Logging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ This is my C# logging library for all of my personal C# projects.
## Index

- [Log](https://github.com/alex8obrien/CommonsLibrary/blob/master/CommonsLibrary.Logging/Log.cs)
- [Warning](https://github.com/alex8obrien/CommonsLibrary/blob/master/CommonsLibrary.Logging/Warning.cs)
- [Error](https://github.com/alex8obrien/CommonsLibrary/blob/master/CommonsLibrary.Logging/Error.cs)
- [Builder Class](https://github.com/alex8obrien/CommonsLibrary/blob/master/CommonsLibrary.Logging/LogBuilder.cs)
- [Director Class](https://github.com/alex8obrien/CommonsLibrary/blob/master/CommonsLibrary.Logging/LogDirector.cs)
- [Base Log Class](https://github.com/alex8obrien/CommonsLibrary/blob/master/CommonsLibrary.Logging/Logs.cs)

## My Other C# Libraries

Expand Down
16 changes: 0 additions & 16 deletions CommonsLibrary.Logging/Warning.cs

This file was deleted.