From 5034b410fc688d00e1444fd8995538f467f1e3c9 Mon Sep 17 00:00:00 2001 From: Shu0T1an ChenG Date: Sat, 27 Apr 2019 18:10:46 -0700 Subject: [PATCH] [mirrororch]: Fix comments typo Signed-off-by: Shu0T1an ChenG --- orchagent/mirrororch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orchagent/mirrororch.cpp b/orchagent/mirrororch.cpp index 120eb7b17a2..e295ecb7c74 100644 --- a/orchagent/mirrororch.cpp +++ b/orchagent/mirrororch.cpp @@ -566,7 +566,7 @@ bool MirrorOrch::activateSession(const string& name, MirrorEntry& session) MirrorSessionUpdate update = { name, true }; notify(SUBJECT_TYPE_MIRROR_SESSION_CHANGE, static_cast(&update)); - SWSS_LOG_NOTICE("Activate mirror session %s", name.c_str()); + SWSS_LOG_NOTICE("Activated mirror session %s", name.c_str()); return true; } @@ -593,7 +593,7 @@ bool MirrorOrch::deactivateSession(const string& name, MirrorEntry& session) // Store whole state into StateDB, since it is far from that frequent it's durable setSessionState(name, session); - SWSS_LOG_NOTICE("Deactive mirror session %s", name.c_str()); + SWSS_LOG_NOTICE("Deactivated mirror session %s", name.c_str()); return true; }