ozakboy.NLOG 1.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package ozakboy.NLOG --version 1.2.1                
NuGet\Install-Package ozakboy.NLOG -Version 1.2.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ozakboy.NLOG" Version="1.2.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ozakboy.NLOG --version 1.2.1                
#r "nuget: ozakboy.NLOG, 1.2.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ozakboy.NLOG as a Cake Addin
#addin nuget:?package=ozakboy.NLOG&version=1.2.1

// Install ozakboy.NLOG as a Cake Tool
#tool nuget:?package=ozakboy.NLOG&version=1.2.1                

Ozakboy.NLOG

nuget github

簡單易用的日誌記錄工具,支援文字檔案日誌記錄,無需資料庫配置。適合快速整合到專案中使用。

支援框架

  • .NET Framework 4.6.2
  • .NET 6.0
  • .NET 7.0
  • .NET 8.0
  • .NET Standard 2.0/2.1

特點

  • 📝 自動建立日誌檔案和目錄結構
  • 🔄 智能檔案管理,自動分割大型日誌檔案
  • ⏰ 彈性的日誌保留期限設定
  • 🎯 多層級日誌支援(Trace、Debug、Info、Warn、Error、Fatal)
  • 💡 支援自定義日誌類型
  • 🔒 執行緒安全設計
  • ✨ 內建 JSON 序列化支援
  • 📊 完整的例外資訊記錄
  • 🛡️ 防止格式化字串錯誤
  • 🔍 詳細的執行緒資訊追蹤

安裝

透過 NuGet Package Manager 安裝:

Install-Package Ozakboy.NLOG

或透過 .NET CLI:

dotnet add package Ozakboy.NLOG

詳細功能說明

1. 基本日誌記錄

支援六種標準日誌層級:

using ozakboy.NLOG;

// 追蹤日誌 - 用於詳細追蹤程式執行流程
LOG.Trace_Log("API 請求開始處理");

// 調試日誌 - 用於開發階段的調試資訊
LOG.Debug_Log("變數值: " + value);

// 訊息日誌 - 用於記錄一般操作資訊
LOG.Info_Log("使用者登入成功");

// 警告日誌 - 用於記錄潛在問題
LOG.Warn_Log("API 響應時間超過預期");

// 錯誤日誌 - 用於記錄錯誤但不影響系統運行
LOG.Error_Log("資料驗證失敗");

// 致命日誌 - 用於記錄嚴重錯誤
LOG.Fatal_Log("資料庫連線中斷");

2. 物件序列化記錄

支援自動序列化物件為 JSON 格式:

// 記錄自定義類別
var user = new User { Id = 1, Name = "Test User" };
LOG.Info_Log(user);

// 記錄異常物件
try {
    // 程式碼
}
catch (Exception ex) {
    LOG.Error_Log(ex);  // 自動序列化異常資訊
}

3. 格式化字串支援

// 基本格式化
LOG.Info_Log("使用者 {0} 執行了 {1} 操作", true, new string[] { "admin", "delete" });

// JSON 字串自動處理
var jsonString = "{\"key\": \"value\"}";
LOG.Info_Log(jsonString);  // 自動處理 JSON 字串中的大括號

4. 自定義日誌類型

支援自定義日誌類型,方便分類管理:

// 記錄 API 相關日誌
LOG.CostomName_Log("API", "外部 API 呼叫開始");

// 記錄資料庫操作
LOG.CostomName_Log("Database", "執行資料庫備份");

// 記錄安全相關資訊
LOG.CostomName_Log("Security", "偵測到異常登入嘗試");

// 自定義類型也支援物件序列化
var apiResponse = new ApiResponse { Status = 200 };
LOG.CostomName_Log("API", apiResponse);

5. 進階配置選項

// 設定日誌保留天數(使用負數)
LOG.SetLogKeepDay(-7);  // 保留最近 7 天的日誌

// 設定單個日誌檔案大小上限
LOG.SetBigFilesByte(100 * 1024 * 1024);  // 設定為 100MB

// 控制是否寫入檔案
LOG.Info_Log("僅控制台輸出", false);  // 第二個參數設為 false 則只輸出到控制台

6. 日誌檔案管理

檔案位置
  • 根目錄:[應用程式根目錄]\logs\LogFiles\
  • 檔案命名:yyyyMMdd_[LogType]_Log.txt
  • 分割檔案:yyyyMMdd_[LogType]_part[n]_Log.txt
檔案格式

每行日誌包含以下資訊:

HH:mm:ss[ThreadId] 日誌內容

7. 異常處理功能

完整的異常資訊記錄:

try {
    // 程式碼
}
catch (Exception ex) {
    // 記錄完整異常資訊,包括:
    // - 異常類型
    // - 異常訊息
    // - 堆疊追蹤
    // - 內部異常
    // - 自定義資料
    LOG.Error_Log(ex);
}

效能考量

  • 使用 lock 機制確保執行緒安全
  • 智能檔案分割避免單個檔案過大
  • 自動清理過期日誌節省磁碟空間
  • 優化的字串處理和格式化邏輯

最佳實踐

  1. 適當設定日誌保留時間,避免佔用過多磁碟空間
  2. 根據專案需求合理使用不同日誌層級
  3. 善用自定義日誌類型進行日誌分類
  4. 使用物件序列化功能記錄結構化資料
  5. 在關鍵操作點加入適當的日誌記錄

疑難排解

常見問題:

  1. 檔案存取權限問題

    • 確保應用程式對日誌目錄具有寫入權限
  2. 日誌檔案鎖定

    • 使用 WriteTxt 參數控制檔案寫入
  3. 格式化字串問題

    • 使用陣列傳遞格式化參數
    • 注意 JSON 字串中的大括號處理

授權條款

MIT License

貢獻指南

歡迎透過以下方式貢獻:

  1. 提交 Issue 回報問題
  2. 提交 Pull Request 改進程式碼
  3. 完善文件說明
  4. 分享使用經驗

支援與聯繫

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 is compatible.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 66 11/12/2024
1.2.1 68 11/8/2024
1.1.6 195 6/30/2023
1.1.5 161 6/30/2023
1.1.4 154 5/15/2023
1.1.3 168 5/2/2023
1.1.2 218 4/2/2023
1.1.1 398 10/28/2022
1.0.1 374 10/28/2022
1.0.0 416 3/27/2022