aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/script-utils/logfmt/tail_not_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/script-utils/logfmt/tail_not_unix.go')
-rw-r--r--client/go/script-utils/logfmt/tail_not_unix.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/client/go/script-utils/logfmt/tail_not_unix.go b/client/go/script-utils/logfmt/tail_not_unix.go
new file mode 100644
index 00000000000..7030572575d
--- /dev/null
+++ b/client/go/script-utils/logfmt/tail_not_unix.go
@@ -0,0 +1,15 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// vespa logfmt command
+// Author: mpolden
+
+//go:build windows
+
+package logfmt
+
+import (
+ "fmt"
+)
+
+func FollowFile(fn string) (Tail, error) {
+ return nil, fmt.Errorf("tail is not supported on this platform")
+}