aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorsuntala <artichaut2023@gmail.com>2025-05-13 21:30:35 +0000
committerGopher Robot <gobot@golang.org>2025-05-13 15:43:42 -0700
commit9e026bf9cc1dcb6ef24d26398182a22d9d6cd2d2 (patch)
tree0b001b08e1a9f4006a3e0b08dfa4b7c1c274c320 /api
parentc44c4de51b68a88e2b8e4a0ae102f941155522d0 (diff)
downloadgo-9e026bf9cc1dcb6ef24d26398182a22d9d6cd2d2.tar.xz
testing: add Output
Output is a method on T, B and F. It provides an io.Writer that writes to the same test output stream as TB.Log. The new output writer is used to refactor the implementation of Log. It maintains the formatting provided by Log while making call site information optional. Additionally, it provides buffering of log messages. This fixes and expands on https://go-review.googlesource.com/c/go/+/646956. For #59928. Change-Id: I08179c35a681f601cf125c0f4aeb648bc10c7a9f GitHub-Last-Rev: e6e202793c9bc471493187e0556a3a1e7305ff82 GitHub-Pull-Request: golang/go#73703 Reviewed-on: https://go-review.googlesource.com/c/go/+/672395 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Alan Donovan <adonovan@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Jonathan Amsterdam <jba@google.com>
Diffstat (limited to 'api')
-rw-r--r--api/next/59928.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/api/next/59928.txt b/api/next/59928.txt
new file mode 100644
index 0000000000..375c7c0e90
--- /dev/null
+++ b/api/next/59928.txt
@@ -0,0 +1,3 @@
+pkg testing, method (*B) Output() io.Writer #59928
+pkg testing, method (*F) Output() io.Writer #59928
+pkg testing, method (*T) Output() io.Writer #59928