mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 06:28:05 +02:00
device: downgrade logging warning in nm_device_steal_connection()
<info> [1467793329.6313] device (veth-guest): Activation: starting connection 'my-wired' (ca058ec5-8a47-4e1e-b38e-962b71c4699e)
<debug> [1467793329.6313] device[0x55af2884bf90] (veth-guest): activation-stage: schedule activate_stage1_device_prepare,2 (id 510)
<warn> [1467793329.6314] device (veth-guest): disconnecting connection 'my-wired' for new activation request.
<info> [1467793329.6315] device (veth-guest): state change: disconnected -> deactivating (reason 'new-activation') [30 110 60
A warning is too verbose. This is not an unusual condition, it's just that
a new activation supersedes an other one.
This commit is contained in:
parent
a1743ab59e
commit
1bbc26a5c7
1 changed files with 1 additions and 1 deletions
|
|
@ -8253,7 +8253,7 @@ nm_device_steal_connection (NMDevice *self, NMSettingsConnection *connection)
|
|||
{
|
||||
NMDevicePrivate *priv = NM_DEVICE_GET_PRIVATE (self);
|
||||
|
||||
_LOGW (LOGD_DEVICE, "disconnecting connection '%s' for new activation request.",
|
||||
_LOGI (LOGD_DEVICE, "disconnecting connection '%s' for new activation request",
|
||||
nm_settings_connection_get_id (connection));
|
||||
|
||||
if ( priv->queued_act_request
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue