From 4e24efe5accd305273ef79aae5ac6621721fbf3d Mon Sep 17 00:00:00 2001 From: phuslu Date: Thu, 6 Jun 2024 22:11:24 +0800 Subject: [PATCH] fix async writer in non linux platform --- async_others.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 async_others.go diff --git a/async_others.go b/async_others.go new file mode 100644 index 00000000..4d0758ca --- /dev/null +++ b/async_others.go @@ -0,0 +1,8 @@ +//go:build !linux +// +build !linux + +package log + +func (w *AsyncWriter) vwriter() { + panic("not_implemented") +}