diff --git a/server/plugins-available/network_settings_plugin.inc.php b/server/plugins-available/network_settings_plugin.inc.php
index 2bea30097e596aaa4be83110dc64d797f225bb58..b711139dd1f9907c6178d939ad01aa53d02ad1c9 100644
--- a/server/plugins-available/network_settings_plugin.inc.php
+++ b/server/plugins-available/network_settings_plugin.inc.php
@@ -239,7 +239,12 @@ class network_settings_plugin {
 			}
 			
 		} else {
-			$app->log('Network configuration disabled in server settings or server is a mirror server.',LOGLEVEL_DEBUG);
+			if($data['mirrored'] == true) {
+				$app->log('Skipping network config request. IP addresses from amster are not configured on the mirror.',LOGLEVEL_DEBUG);
+			} 
+			if($server_config['auto_network_configuration'] == 'n') {
+				$app->log('Network configuration disabled in server settings.',LOGLEVEL_DEBUG);
+			}
 		}
 		
 	}