Remove log entries about changed flags.

This commit is contained in:
Joachim Bauch 2021-04-22 14:23:06 +02:00
parent 3a2adffab6
commit e8012d99d0
No known key found for this signature in database
GPG Key ID: 77C1D22D53E15F02
1 changed files with 0 additions and 3 deletions

View File

@ -211,7 +211,6 @@ func (s *VirtualSession) AddFlags(flags uint32) bool {
}
newFlags := old | flags
if atomic.CompareAndSwapUint32(&s.flags, old, newFlags) {
log.Printf("Flags for session %s now %d (added %d)", s.PublicId(), newFlags, flags)
return true
}
// Another thread updated the flags while we were checking, retry.
@ -227,7 +226,6 @@ func (s *VirtualSession) RemoveFlags(flags uint32) bool {
}
newFlags := old & ^flags
if atomic.CompareAndSwapUint32(&s.flags, old, newFlags) {
log.Printf("Flags for session %s now %d (removed %d)", s.PublicId(), newFlags, flags)
return true
}
// Another thread updated the flags while we were checking, retry.
@ -242,7 +240,6 @@ func (s *VirtualSession) SetFlags(flags uint32) bool {
}
if atomic.CompareAndSwapUint32(&s.flags, old, flags) {
log.Printf("Flags for session %s now %d", s.PublicId(), flags)
return true
}
}