Skip to content

Commit

Permalink
[mirrororch]: Fix comments typo (#863)
Browse files Browse the repository at this point in the history
Signed-off-by: Shu0T1an ChenG <shuche@microsoft.com>
  • Loading branch information
Shuotian Cheng committed Apr 28, 2019
1 parent 7a1b5a9 commit a1ab18c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orchagent/mirrororch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ bool MirrorOrch::activateSession(const string& name, MirrorEntry& session)
MirrorSessionUpdate update = { name, true };
notify(SUBJECT_TYPE_MIRROR_SESSION_CHANGE, static_cast<void *>(&update));

SWSS_LOG_NOTICE("Activate mirror session %s", name.c_str());
SWSS_LOG_NOTICE("Activated mirror session %s", name.c_str());

return true;
}
Expand All @@ -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;
}
Expand Down

0 comments on commit a1ab18c

Please sign in to comment.