diff --git a/examples/html/entityList.html b/examples/html/entityList.html
index 6e7795a3f0..01061f1eb0 100644
--- a/examples/html/entityList.html
+++ b/examples/html/entityList.html
@@ -101,7 +101,6 @@
currentSortColumn = column;
currentSortOrder = "asc";
}
- console.log(currentSortColumn, currentSortOrder);
elSortOrder[column].innerHTML = currentSortOrder == "asc" ? ASC_STRING : DESC_STRING;
entityList.sort(currentSortColumn, { order: currentSortOrder });
}