From a1ab18cc92fa2fc9dab8b1f040406362bdf697e6 Mon Sep 17 00:00:00 2001 From: Shuotian Cheng Date: Sun, 28 Apr 2019 11:25:55 -0700 Subject: [PATCH] [mirrororch]: Fix comments typo (#863) 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 120eb7b17a29..e295ecb7c749 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; }