Best of LoggingFebruary 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Logging in Python: A Beginner's Guide

    Python provides us with a default root logger which is the topmost logger. By default, loggers in python follow a hierarchical order, where logs are propagated upwards to their parents until the log reaches the root logger. Handlers assist in the decision-making of whether to process a log message based on the log's priority.

  2. 2
    Article
    Avatar of itnextITNEXT·3y

    Using useMemo and useCallback to Save the Past from React Langoliers

    Using useMemo and useCallback to Save the Past from React Langoliers is an excellent article on how to avoid excess re-renders. Nadia Makarevich wrote the article after troubleshooting an issue in his team’s codebase with multiple redraws and APIs being called repeatedly.

  3. 3
    Article
    Avatar of itnextITNEXT·3y

    4 container design patterns for Kubernetes

    Learn about 4 container design patterns for Kubernetes, including securing traffic with TLS and collecting logs from apps that log to a file.