singleton icon indicating copy to clipboard operation
singleton copied to clipboard

[REQUIREMENT] Code clean up - improve logs

Open jessiejuachon opened this issue 3 years ago • 0 comments

Is your feature request related to a problem? Please describe. Logs are written with hardcoded class and method names. For example:
SgtnClient.logger.debug "[Translation.getString]..." or SgtnClient.logger.debug "[Translation][getString_p] ..." where "Translation" is the hardcoded class name and "getString" and "getString_p" are hardcoded method names.

Describe the solution you'd like Class names and method names are not hardcoded: SgtnClient.logger.debug { "#{class.name}.#{__method__} ..."

jessiejuachon avatar Feb 15 '22 16:02 jessiejuachon