v3.42.11: Replace all Unicode emojis with ASCII text
- Replace all emoji characters with ASCII equivalents throughout codebase - Replace Unicode box-drawing characters (═║╔╗╚╝━─) with ASCII (+|-=) - Replace checkmarks (✓✗) with [OK]/[FAIL] markers - 59 files updated, 741 lines changed - Improves terminal compatibility and reduces visual noise
This commit is contained in:
@@ -99,8 +99,8 @@ func (pm *PITRManager) EnablePITR(ctx context.Context, archiveDir string) error
|
||||
return fmt.Errorf("failed to update postgresql.conf: %w", err)
|
||||
}
|
||||
|
||||
pm.log.Info("✅ PITR configuration updated successfully")
|
||||
pm.log.Warn("⚠️ PostgreSQL restart required for changes to take effect")
|
||||
pm.log.Info("[OK] PITR configuration updated successfully")
|
||||
pm.log.Warn("[WARN] PostgreSQL restart required for changes to take effect")
|
||||
pm.log.Info("To restart PostgreSQL:")
|
||||
pm.log.Info(" sudo systemctl restart postgresql")
|
||||
pm.log.Info(" OR: sudo pg_ctlcluster <version> <cluster> restart")
|
||||
@@ -132,8 +132,8 @@ func (pm *PITRManager) DisablePITR(ctx context.Context) error {
|
||||
return fmt.Errorf("failed to update postgresql.conf: %w", err)
|
||||
}
|
||||
|
||||
pm.log.Info("✅ PITR disabled successfully")
|
||||
pm.log.Warn("⚠️ PostgreSQL restart required")
|
||||
pm.log.Info("[OK] PITR disabled successfully")
|
||||
pm.log.Warn("[WARN] PostgreSQL restart required")
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user