Movensys.LogHelper.Core
1.4.10
dotnet add package Movensys.LogHelper.Core --version 1.4.10
NuGet\Install-Package Movensys.LogHelper.Core -Version 1.4.10
<PackageReference Include="Movensys.LogHelper.Core" Version="1.4.10" />
<PackageVersion Include="Movensys.LogHelper.Core" Version="1.4.10" />
<PackageReference Include="Movensys.LogHelper.Core" />
paket add Movensys.LogHelper.Core --version 1.4.10
#r "nuget: Movensys.LogHelper.Core, 1.4.10"
#:package Movensys.LogHelper.Core@1.4.10
#addin nuget:?package=Movensys.LogHelper.Core&version=1.4.10
#tool nuget:?package=Movensys.LogHelper.Core&version=1.4.10
Movensys.LogHelper
This is a function for writing logs in .txt format developed by the Movensys Application Team.
Features
- Easy to use based on enum
- Write logs of DEBUG, TRACE, INFORMATION, WARNING, ERROR, FATAL Type
- Supports auto-compression and auto-delete functions
- Log history GUI function support
- Log datagridview GUI feature support
- Log option setting GUI feature support
Code Highlighting
using Movensys.LogHelper;
namespace WinFormsApp1
{
//Define Log
enum MyLogger
{
EquipA,
EquipB,
EquipC
}
internal static class Program
{
[STAThread]
static void Main()
{
//Add Init
LogHelper<MyLogger>.Init(); //Init(true) => Virtual Mode
//Use Example
LogHelper<MyLogger>.GetLogger(MyLogger.EquipA).INFOMATION("Process Start!");
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}
Tip
After writing a detailed log, proceed with the operation by activating and deactivating it. You can merge and check the logs written in multiple loggers through History.
Release History
Aug 28, 2025 - 1.4.10 ver<br> Supplemental update for exception situations that occur when writing logs in a File Lock situation.
July 2, 2025 - 1.4.9 ver<br> Action to resolve error in loading logs written in the past as "INFOMATION" when loading Log History.
July 2, 2025 - 1.4.8 ver<br> Added Virtual Mode (Added Virtual Mode in which logs are not written for history confirmation) If Program A is using LogHelper.Core, and Program B also initializes LogHelper.Core with the same Enum in Virtual Mode by calling Init(true), then Program B can view the log history of Program A through LogHelper.Winforms. The Virtual Mode feature allows Program B to inspect the logs generated by Program A.
June 27, 2025 - 1.4.7 ver<br> Modify LogLevel Text and function name (INFOMATION → INFORMATION) Add missing RemoveOptionDisable function
May 28, 2025 - 1.4.6 ver<br> Fix save path error
April 30, 2025 - 1.4.5 ver<br> Only the Function function is separated from the existing LogHelper 1.4.3 (for cross-platform) Some changes to Directory path functionality (multilingual support)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Framework | net45 is compatible. net451 is compatible. net452 is compatible. net46 is compatible. net461 is compatible. net462 is compatible. net463 was computed. net47 is compatible. net471 is compatible. net472 is compatible. net48 is compatible. net481 is compatible. |
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.5.1
- No dependencies.
-
.NETFramework 4.5.2
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETFramework 4.6.1
- No dependencies.
-
.NETFramework 4.6.2
- No dependencies.
-
.NETFramework 4.7
- No dependencies.
-
.NETFramework 4.7.1
- No dependencies.
-
.NETFramework 4.7.2
- No dependencies.
-
.NETFramework 4.8
- No dependencies.
-
.NETFramework 4.8.1
- No dependencies.
-
net5.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Movensys.LogHelper.Core:
Package | Downloads |
---|---|
Movensys.LogHelper.WinForms
Created by Movensys Application Team with .txt logging functionality |
|
Movensys.BlackBox.Core
Created by Movensys Application Team with BlackBox functionality |
GitHub repositories
This package is not used by any popular GitHub repositories.