Commenting console.log

This commit is contained in:
Eric van der Vlist 2023-01-24 11:48:02 +01:00
parent d85e72956c
commit eda1270a3c
1 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ const styles = {
};
},
getStyle: memoize((params: any) => {
console.log({ caller: 'getStyle', params });
// console.log({ caller: 'getStyle', params });
const { isSelected, feature, zoom } = params;
const styles = [
new Style({ stroke: isSelected ? trksegStrokeSel : trksegStroke }),
@ -263,7 +263,7 @@ const styles = {
};
},
getStyle: memoize((params: any) => {
console.log({ caller: 'getStyle', params });
// console.log({ caller: 'getStyle', params });
const { isSelected } = params;
return new Style({ stroke: isSelected ? rteStrokeSel : rteStroke });
}, memoizeOptions),