Skip to content

Releases: Cysharp/ZLogger

Ver.2.4.1

22 Feb 10:26
Compare
Choose a tag to compare

Breaking Changes

Performance improvement for LogInfo passing but some breaking changes at formatter configuration.

PlainText SetPrefixFormatter/SetSuffixFormatter requires type and in
formatter.SetPrefixFormatter($"", (template, info) => -> formatter.SetPrefixFormatter($"", (in MessageTemplate template, in LogInfo info) =>

Json AdditionalFormatter requires type and in
formatter.AdditionalFormatter(writer, info) => -> formatter.AdditionalFormatter(Utf8JsonWriter writer, in LogInfo info)

Full Changelog: 2.4.0...2.4.1

Ver.2.4.0

22 Feb 09:55
Compare
Choose a tag to compare

What's Changed

  • Make sure that resources.dat files are included in the build by @hadashiA in #151
  • ci: Cysharp/Actions/.github/workflows/create-release.yaml by @guitarrapc in #150
  • ZLogger.ZLog supports object? context and can get context from LogInfo.Context
  • Add IZLoggerEntry.GetOriginalFormat/WriteOriginalFormat

Full Changelog: 2.3.1...2.4.0

Ver.2.3.1

27 Jan 01:19
Compare
Choose a tag to compare

What's Changed

  • Fix not correct implementation CreateEntry which causes compile errors in Unity by @0xF6 in #148

New Contributors

  • @0xF6 made their first contribution in #148

Full Changelog: 2.3.0...2.3.1

Ver.2.3.0

26 Jan 09:47
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.1.0...2.3.0

Ver.2.1.0

22 Dec 05:23
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.0.2...2.1.0

Ver.2.0.2

19 Dec 06:14
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.0.1...2.0.2

Ver.2.0.1

15 Dec 08:01
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.0.0...2.0.1

Ver.1.7.1

05 Oct 03:31
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.7.0...1.7.1

Ver.1.7.0

26 Oct 10:13
Compare
Choose a tag to compare

What's Changed

  • Update depenency to 6.0.0
  • Unity supports netstandard2.1 and nullable(drop netstandard 2.0 support officialy)

Full Changelog: 1.6.2...1.7.0

Ver.1.6.2

01 Sep 01:45
Compare
Choose a tag to compare
  • Add AddZLoggerConsole(..., bool outputToErrorStream = false), when set to true, output log to std error