From e046c55e4f17e4d00041534ecb50c51ea56fd394 Mon Sep 17 00:00:00 2001 From: Harsh Date: Wed, 30 Nov 2022 14:56:57 +0530 Subject: [PATCH] added logger function --- pkg/dnsclient/dnsclient.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/dnsclient/dnsclient.go b/pkg/dnsclient/dnsclient.go index 37378ab..004c5c3 100644 --- a/pkg/dnsclient/dnsclient.go +++ b/pkg/dnsclient/dnsclient.go @@ -29,6 +29,7 @@ type DNSClient interface { GetManagedZones(ctx context.Context) (map[string]string, error) CreateOrUpdateRecordSet(ctx context.Context, view, zone, name, record_type string, values []string, ttl int64) error DeleteRecordSet(ctx context.Context, zone, name, recordType string) error + LogDetails(params ...string) } type dnsClient struct {