diff --git a/cerealblotchmodels/templates/cerealblotchmodels/barleynetblotchform.html b/cerealblotchmodels/templates/cerealblotchmodels/barleynetblotchform.html
index 87659ef708099daf8f713d0f2b076592a7813f6f..177578a2a689eee14a753d2929fbe99c16df56de 100755
--- a/cerealblotchmodels/templates/cerealblotchmodels/barleynetblotchform.html
+++ b/cerealblotchmodels/templates/cerealblotchmodels/barleynetblotchform.html
@@ -318,14 +318,12 @@
 
 	window.displayWeatherstationInput = () => {
 		radioWeatherstation.checked = true;
-		console.error("Check radioWeatherstation!")
 		document.getElementById('input-weatherstation').style.display="block";
 		document.getElementById('input-coordinates').style.display="none";
 	}
 
 	window.displayCoordinatesInput = () => {
 		radioGrid.checked = true;
-		console.error("Check radioGrid!")
 		document.getElementById('input-weatherstation').style.display="none";
 		document.getElementById('input-coordinates').style.display="block";
 		getTimezoneForSelectedPoint()
@@ -616,7 +614,6 @@
 
 			var userSettings = getLocalSettings(getNameSpaced("{{ form_id }}",formFields), false);
 			if(!isDictEmpty(userSettings)) {
-				console.error("Found previously stored usersettings", userSettings);
 				renderUserSettings(userSettings);
 				if(theForm["weatherDataSourceType"].value == "grid") {
 					displayCoordinatesInput();
@@ -626,7 +623,6 @@
 					displayCoordinatesInput();
 				}
 			} else {
-				console.error("Found no previously stored usersettings");
 				displayCoordinatesInput();
 			}
 		}).catch(function(error) {