fmt
the build was successful Details

This commit is contained in:
konrad 2018-11-30 19:57:40 +01:00
parent 24b2c436bf
commit ba47e39bfe
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ func UpdateActiveClients() {
var activeClients int64
for _, c := range clients {
//fmt.Println(fmt.Sprintf("Mac: %s | First seen: %s | Last seen: %s | Power: %d | Packets: %d | Active: %t", c.MACAdress, c.FirstSeen.String(), c.LastSeen.String(), c.Power, c.Packets, c.isActive()))
// fmt.Println(fmt.Sprintf("Mac: %s | First seen: %s | Last seen: %s | Power: %d | Packets: %d | Active: %t", c.MACAdress, c.FirstSeen.String(), c.LastSeen.String(), c.Power, c.Packets, c.isActive()))
if c.IsActive() {
activeClients++
}