Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 348 Bytes

checklist.md

File metadata and controls

14 lines (12 loc) · 348 Bytes

Common mistakes

  • Let's remove all TODO comments before submitting solution.
  • Don't forget about empty lines in the end of files.
  • Let's make our log messages informative

Bad example:

    logger.debug("Method login was called");

Good example:

    logger.debug("Method login was called. Params: login={}", login);