Removes console.log

This commit is contained in:
Simon Howe
2016-02-04 18:13:53 +01:00
parent 7d73590ced
commit cd66819f6b

View File

@@ -149,9 +149,6 @@ export default ComposedComponent => class extends React.Component {
const lastValue = samples.length > 0 ? samples[samples.length - 1].value : null;
const slidingWindow = {first: movingFirstDate, last: movingLastDate, max, samples, value: lastValue};
if (this.props.label === 'CPU') {
console.log(lastValue, movingLastDate);
}
return <ComposedComponent {...this.props} {...slidingWindow} />;
}