Go to file
wrenge a0ccc9295d
Build and Publish NPM Package / docker (push) Successful in 9s Details
Build and Test / build (push) Failing after 35s Details
updated csproj
2024-05-03 10:44:32 +03:00
.gitea/workflows commonize nuget build and push workflow 2024-03-12 00:09:41 +03:00
Editor Fixed build errors 2023-11-07 19:49:02 +03:00
Runtime updated csproj 2024-05-03 10:44:32 +03:00
.gitignore gitignore, csproj change 2024-03-26 17:17:16 +03:00
Editor.meta Added TaggedLogger Settings window 2023-11-07 18:57:18 +03:00
README.md Fixed the code not compiling when STRIP_LOGS directive is defined 2023-10-09 15:11:39 +03:00
README.md.meta first commit 2022-05-17 16:55:02 +03:00
Runtime.meta first commit 2022-05-17 16:55:02 +03:00
composer.json composer.json update 2024-03-26 12:37:03 +03:00
composer.json.meta Vanilla csharp project migration 2024-03-26 17:18:35 +03:00
log.nuspec up to 3.2.6 2024-03-12 00:13:21 +03:00
log.nuspec.meta Vanilla csharp project migration 2024-03-26 17:18:35 +03:00
package.json updated csproj 2024-05-03 10:44:32 +03:00
package.json.meta first commit 2022-05-17 16:55:02 +03:00

README.md

Example

using BitGames.Logs;

...

Log.Debug("Hello World Debug!");
Log.Info("Hello World Info!");
Log.Error("Hello World Error!");
Log.Warn("Hello World Warn!");

...

#if !UNITY_STANDALONE
    Log.OnError += s => Crashlytics.Log("[ERR] " + s);
#endif