Requirements
Flagd logs have mixed usage of uppercase and lowercase.
je.Logger.Error(fmt.Sprintf("parseFractionalEvaluationData: %v", err)) vs fs.Logger.Error(fmt.Sprintf("Error fetching after Create notification: %s", err.Error()))
This issue focuses on unifying case usage throughout the source and setting the standards for logging formats.
-
Prefered first letter case - lowercase
ex:- fs.Logger.Debug("configuration modified")
-
Prefered separator for details - :
(Note the : usage for for uri detail )
ex:- Logger.Info(fmt.Sprintf("watching filepath: %s", fs.URI))
-
Prefer log line end punctuation - NONE (i.e - No full stop)
ex:- fs.Logger.Info("Starting filepath sync notifier")
Requirements
Flagd logs have mixed usage of uppercase and lowercase.
je.Logger.Error(fmt.Sprintf("parseFractionalEvaluationData: %v", err))vsfs.Logger.Error(fmt.Sprintf("Error fetching after Create notification: %s", err.Error()))This issue focuses on unifying case usage throughout the source and setting the standards for logging formats.
Prefered first letter case - lowercase
ex:- fs.Logger.Debug("configuration modified")
Prefered separator for details - :
(Note the
:usage for for uri detail )ex:- Logger.Info(fmt.Sprintf("watching filepath: %s", fs.URI))
Prefer log line end punctuation - NONE (i.e - No full stop)
ex:- fs.Logger.Info("Starting filepath sync notifier")