File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ void IntfsOrch::increaseRouterIntfsRefCount(const string &alias)
183
183
SWSS_LOG_ENTER ();
184
184
185
185
m_syncdIntfses[alias].ref_count ++;
186
- SWSS_LOG_DEBUG (" Router interface %s ref count is increased to %d" ,
186
+ SWSS_LOG_INFO (" Router interface %s ref count is increased to %d" ,
187
187
alias.c_str (), m_syncdIntfses[alias].ref_count );
188
188
}
189
189
@@ -192,7 +192,7 @@ void IntfsOrch::decreaseRouterIntfsRefCount(const string &alias)
192
192
SWSS_LOG_ENTER ();
193
193
194
194
m_syncdIntfses[alias].ref_count --;
195
- SWSS_LOG_DEBUG (" Router interface %s ref count is decreased to %d" ,
195
+ SWSS_LOG_INFO (" Router interface %s ref count is decreased to %d" ,
196
196
alias.c_str (), m_syncdIntfses[alias].ref_count );
197
197
}
198
198
@@ -1271,7 +1271,7 @@ bool IntfsOrch::removeRouterIntfs(Port &port)
1271
1271
1272
1272
if (m_syncdIntfses[port.m_alias ].ref_count > 0 )
1273
1273
{
1274
- SWSS_LOG_NOTICE (" Router interface is still referenced" );
1274
+ SWSS_LOG_NOTICE (" Router interface %s is still referenced with ref count %d " , port. m_alias . c_str (), m_syncdIntfses[port. m_alias ]. ref_count );
1275
1275
return false ;
1276
1276
}
1277
1277
You can’t perform that action at this time.
0 commit comments