From 76a616ebffe710bc4189ca2054c6e5317fb383a8 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Thu, 4 Oct 2018 21:14:59 +0200 Subject: [PATCH] write error to log --- functions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.go b/functions.go index 89ef17de6..91a50cd20 100644 --- a/functions.go +++ b/functions.go @@ -16,5 +16,5 @@ func CreateObject(v *Instance, config interface{}) (interface{}, error) { } func PrintDeprecatedFeatureWarning(feature string) { - newError("You are using a deprecated feature: " + feature + ". Please update your config file with latest configuration format, or update your client software.") + newError("You are using a deprecated feature: " + feature + ". Please update your config file with latest configuration format, or update your client software.").WriteToLog() }