Skip to content

Commit

Permalink
chore: unify the log format (#343)
Browse files Browse the repository at this point in the history
Co-authored-by: Anqi <[email protected]>
  • Loading branch information
haoxins and Nicole00 authored Jan 17, 2025
1 parent 9bb4c00 commit b3c925a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit b3c925a

Please sign in to comment.