diff --git a/lib/App/Netdisco/Worker/Plugin/Discover/Neighbors.pm b/lib/App/Netdisco/Worker/Plugin/Discover/Neighbors.pm index 154b7038..2e2502e2 100644 --- a/lib/App/Netdisco/Worker/Plugin/Discover/Neighbors.pm +++ b/lib/App/Netdisco/Worker/Plugin/Discover/Neighbors.pm @@ -203,7 +203,7 @@ sub store_neighbors { my $mac = NetAddr::MAC->new(mac => $tmpid); if ($mac and not $mac->errstr) { info sprintf - '[%s] neigh - found neighbor %s by MAC %s', + ' [%s] neigh - trying to find neighbor %s by MAC %s', $device->ip, $remote_id, $mac->as_ieee; $neigh = $devices->single({mac => $mac->as_ieee}); } diff --git a/lib/App/Netdisco/Worker/Plugin/Macsuck.pm b/lib/App/Netdisco/Worker/Plugin/Macsuck.pm index a051329e..163bf7e4 100644 --- a/lib/App/Netdisco/Worker/Plugin/Macsuck.pm +++ b/lib/App/Netdisco/Worker/Plugin/Macsuck.pm @@ -19,7 +19,7 @@ register_worker({ phase => 'check' }, sub { return Status->defer("macsuck skipped: $device is pseudo-device") if $device->is_pseudo; - return Status->defer("arpnip skipped: $device has no layer 2 capability") + return Status->defer("macsuck skipped: $device has no layer 2 capability") unless $device->has_layer(2); return Status->defer("macsuck deferred: $device is not macsuckable")