From 858c61b57ec30529d3b935ddf5d83a1702d2f251 Mon Sep 17 00:00:00 2001 From: Jonathan Amsterdam Date: Fri, 19 May 2023 11:42:04 -0400 Subject: [PATCH] doc: add slog to release notes Updates #58645 Change-Id: Ice8f115f00c62dcffd0c7b78bb8a7d66d832075d Reviewed-on: https://go-review.googlesource.com/c/go/+/496194 TryBot-Result: Gopher Robot Reviewed-by: Alan Donovan Run-TryBot: Jonathan Amsterdam --- doc/go1.21.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/go1.21.html b/doc/go1.21.html index 743e2a3e28178..1cf4bfe1a203c 100644 --- a/doc/go1.21.html +++ b/doc/go1.21.html @@ -154,6 +154,15 @@

Linker

Core library

+

New log/slog package

+ +

+ The new log/slog package provides structured logging with levels. + Structured logging emits key-value pairs + to enable fast, accurate processing of large amounts of log data. + The package supports integration with popular log analysis tools and services. +

+

Minor changes to the library