From f0c52fe50d9f0c2e8b13661993f509777010a433 Mon Sep 17 00:00:00 2001 From: devendrapat <76650287+devendrapat@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:37:11 +0530 Subject: [PATCH 1/2] Update README with getting started instructions Added instructions for getting started with the logging repository. Signed-off-by: devendrapat <76650287+devendrapat@users.noreply.github.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1e8af75..a2b3ddf 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ It provides a **standardized project structure**, ensuring best practices for: --- ## 🚀 Getting Started +Following steps must be followed for getting started with logging repository: ### 1️⃣ Clone the Repository From d9ea05186290fced437092b7055cc2790cd6eb53 Mon Sep 17 00:00:00 2001 From: devendrapat <76650287+devendrapat@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:48:38 +0530 Subject: [PATCH 2/2] Add testing enum to error.h Signed-off-by: devendrapat <76650287+devendrapat@users.noreply.github.com> --- score/datarouter/error/error.h | 1 + 1 file changed, 1 insertion(+) diff --git a/score/datarouter/error/error.h b/score/datarouter/error/error.h index 5ab78b9..f602056 100644 --- a/score/datarouter/error/error.h +++ b/score/datarouter/error/error.h @@ -28,6 +28,7 @@ enum class LoggingErrorCode : score::result::ErrorCode kNoFileFound = 1, kParseError, kNoChannelsFound + kThisEnumIsOnlyForTesting }; class LoggingErrorDomain final : public result::ErrorDomain