diff --git a/ipmd/static/ipmd/js/ipmdlib.js b/ipmd/static/ipmd/js/ipmdlib.js
index 29323adbd9e66f2065eb6e6d55f9fa138c5ec520..eef4a23ddf8ce7abb2d61381166b382ed47686f5 100644
--- a/ipmd/static/ipmd/js/ipmdlib.js
+++ b/ipmd/static/ipmd/js/ipmdlib.js
@@ -407,7 +407,6 @@ async function isPointCoveredByDatasource(coordinate, datasource)
  * @param {String} tableClass for styling the table, e.g. using Bootstrap
  */ 
 function renderWeatherData(weatherData, container, tableClass){
-    console.info(weatherData);
     
     let dates = getDateArray(weatherData.timeStart, weatherData.interval, weatherData.locationWeatherData[0].data.length);
     let html = "<table" + (tableClass != undefined ? " class=\"" + tableClass + "\"" : "") + "><thead><tr><th>Time</th>";