From b3c925adb57231994a28ba85a4b98816a3388e3b Mon Sep 17 00:00:00 2001 From: Xin Hao Date: Fri, 17 Jan 2025 10:13:25 +0800 Subject: [PATCH] chore: unify the log format (#343) Co-authored-by: Anqi <16240361+Nicole00@users.noreply.github.com> --- schema_manager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema_manager.go b/schema_manager.go index 359b6a59..6165634d 100644 --- a/schema_manager.go +++ b/schema_manager.go @@ -127,7 +127,7 @@ func (mgr *SchemaManager) ApplyTag(tag LabelSchema) (*ResultSet, error) { if ttlCol != tag.TTLCol || ttlDuration != tag.TTLDuration { if mgr.verbose { log.Printf( - "ApplyTag: Alter the tag TTL. name=%s, col from %s to %s, duration from %d to %d\n", + "ApplyTag: alter the tag TTL. name=%s, col from %s to %s, duration from %d to %d\n", tag.Name, ttlCol, tag.TTLCol, @@ -244,7 +244,7 @@ func (mgr *SchemaManager) ApplyEdge(edge LabelSchema) (*ResultSet, error) { if ttlCol != edge.TTLCol || ttlDuration != edge.TTLDuration { if mgr.verbose { log.Printf( - "ApplyEdge: Alter the edge TTL. name=%s, col from %s to %s, duration from %d to %d\n", + "ApplyEdge: alter the edge TTL. name=%s, col from %s to %s, duration from %d to %d\n", edge.Name, ttlCol, edge.TTLCol,