From 47eb947e49ebcd93f6a683025b45f9129c1c5a6d Mon Sep 17 00:00:00 2001 From: Yedidya Date: Thu, 4 Feb 2021 22:37:40 +0200 Subject: [PATCH] revert readme changes --- README.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/README.md b/README.md index deca5293..72fadeee 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Read in a different language: [![CN](/assets/flags/CN.png)**CN**](/README.chines ## Table of Contents 1. [Project Structure Practices (5)](#1-project-structure-practices) -2. [Error Handling Practices (13) ](#2-error-handling-practices) +2. [Error Handling Practices (12) ](#2-error-handling-practices) 3. [Code Style Practices (12) ](#3-code-style-practices) 4. [Testing And Overall Quality Practices (13) ](#4-testing-and-overall-quality-practices) 5. [Going To Production Practices (19) ](#5-going-to-production-practices) @@ -235,16 +235,6 @@ especially if the cause of the abnormal behavior is inside of the missing functi 🔗 [**Read More: returning promises**](/sections/errorhandling/returningpromises.md) -

- -## ![✔] 2.13 Give your error's log a context by adding a correlation ID - -**TL;DR:** Correlation ID lets you link log records, even if they belong to different services. It can save your day when a process including 20 different microservices throws an exception in one of them, and you have no idea where did the problem start across the flow. - -**Otherwise:** Once an error will occure, you might read the logs without any context of understanding what caused the unexpected input and which logs of other services are related to your investigated issue. - -🔗 [**Read More: Correlation ID: help your logs tell you a story and give your error a context**](/sections/errorhandling/correlationid.md) -


⬆ Return to top