GdCSharpLog
J

Publisher

joachimbarr

GdCSharpLog

Tools
CSharp Logger Debug Output Console Color Level Message

A Simple logger for C# game projects * Colored output using print_rich * prompt containing date,time,file,function and line * multiple log level * hide debug and info message on release to use it use the log object for exemple : Log.dbg("debug message"); Log.info("info message"); Log.warn("warning message"); Log.error("error message");

GdCSharpLog

A Logger for Godot C# projects

Features

  • Colored output using print_rich
  • prompt containing date,time,file,function and line
  • multiple log level
  • disable debug and info message on release

How to use

the project uses a static class so that you only need to use the global Log object. the Log object as different log levels to send a message you have to use the appropriate one for exemple:

Log.dbg("debug message");
Log.info("info message");
Log.warn("warning message");
Log.error("error message");