Chickensoft.GoDotLog
1.1.15
See the version list below for details.
dotnet add package Chickensoft.GoDotLog --version 1.1.15
NuGet\Install-Package Chickensoft.GoDotLog -Version 1.1.15
<PackageReference Include="Chickensoft.GoDotLog" Version="1.1.15" />
paket add Chickensoft.GoDotLog --version 1.1.15
#r "nuget: Chickensoft.GoDotLog, 1.1.15"
// Install Chickensoft.GoDotLog as a Cake Addin
#addin nuget:?package=Chickensoft.GoDotLog&version=1.1.15
// Install Chickensoft.GoDotLog as a Cake Tool
#tool nuget:?package=Chickensoft.GoDotLog&version=1.1.15
Chickensoft.GoDotLog
Opinionated Godot logging interface and console implementation for C#.
<p align="center"> <img alt="Chickensoft.GoDotLog" src="Chickensoft.GoDotLog/icon.png" width="200"> </p>
public class MyEntity {
// Create a log which outputs messages prefixed with the name of the class.
private ILog _log = new GDLog(nameof(MyClass));
}
Logs can perform a variety of common actions (and output messages if they fail automatically):
_log.Print("My message");
_log.Warn("My message");
_log.Err("My message");
// Run a potentially unsafe action. Any errors thrown from the action will
// be output by the log. An optional error handler callback can be provided
// which will be invoked before the exception is re-thrown.
_log.Run(
() => { _log.Print("Potentially unsafe action"); },
(e) => {
_log.Err("Better clean up after myself...whatever I did failed.");
}
);
// Throw an assertion exception with the given message if the assertion fails.
_log.Assert(node.Name == "MyNode", "Must be valid node name.");
// Return the value of a function or a fallback value.
var result = _log.Always<T>(
() => new Random().Next(0, 10) > 5 ? "valid value" : null,
"fallback value"
);
// Print a decently formatted stack trace.
_log.Print(new StackTrace());
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 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 was computed. net8.0-android 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. |
-
net6.0
- GodotSharp (>= 4.2.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Chickensoft.GoDotLog:
Package | Downloads |
---|---|
Chickensoft.GoDotTest
C# test runner for Godot. Run tests from the command line, collect code coverage, and debug tests in VSCode. |
|
Chickensoft.GoDotNet
State machines, notifiers, and other utilities for C# Godot development. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.16-godot4.2.1-rc.1 | 10 | 12/7/2023 |
1.1.15 | 87 | 11/30/2023 |
1.1.14-godot4.2.0-rc.2 | 131 | 11/25/2023 |
1.1.13-godot4.2.0-beta.5 | 329 | 11/7/2023 |
1.1.12-godot4.2.0-beta.2 | 163 | 10/20/2023 |
1.1.11 | 1,498 | 10/4/2023 |
1.1.10 | 659 | 8/21/2023 |
1.1.9 | 3,896 | 7/12/2023 |
1.1.8-godot4.1.0-rc.3 | 914 | 7/4/2023 |
1.1.7-godot4.1.0-rc.2 | 131 | 6/29/2023 |
1.1.6-godot4.1.0-rc.1 | 124 | 6/27/2023 |
1.1.5-godot4.1.0-beta.2 | 140 | 6/14/2023 |
1.1.4 | 212 | 5/19/2023 |
1.1.3-godot4.0.3-rc.1 | 256 | 4/27/2023 |
1.1.2 | 548 | 4/4/2023 |
1.1.1-godot4.0.2-rc.1 | 172 | 4/2/2023 |
1.1.0-godot4.0.2-rc.1 | 72 | 4/2/2023 |
1.0.2-godot.4.beta.16 | 95 | 1/30/2023 |
1.0.2-beta8 | 101 | 12/17/2022 |
1.0.2-beta6 | 82 | 11/24/2022 |
1.0.2-beta3 | 84 | 10/29/2022 |
1.0.2-beta1 | 128 | 9/17/2022 |
1.0.2-beta.4.0.0.17 | 110 | 2/6/2023 |
1.0.1 | 478 | 4/2/2023 |
1.0.1-godot4.0.2-rc.1 | 75 | 4/2/2023 |
1.0.1-beta1 | 123 | 9/17/2022 |
1.0.0 | 179 | 4/2/2023 |
1.0.0-beta1 | 136 | 9/17/2022 |
0.0.5 | 1,443 | 6/20/2022 |
0.0.4 | 1,308 | 6/18/2022 |
0.0.3 | 407 | 6/18/2022 |
0.0.2 | 396 | 6/18/2022 |
0.0.1 | 404 | 6/18/2022 |
Chickensoft.GoDotLog release.