Skip to content

Commit ffc19c3

Browse files
committed
Removed console log
1 parent 725cc15 commit ffc19c3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/libraries/TwabLib.sol

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.19;
33

4-
import "forge-std/console2.sol";
5-
64
import "ring-buffer-lib/RingBufferLib.sol";
75

86
import { ObservationLib, MAX_CARDINALITY } from "./ObservationLib.sol";
@@ -252,10 +250,8 @@ library TwabLib {
252250
if (_targetTime < PERIOD_OFFSET) {
253251
return 0;
254252
}
255-
console2.log("lastObservationAt", lastObservationAt(PERIOD_LENGTH, PERIOD_OFFSET));
256253
// if this is for an overflowed time period, return 0
257254
if (isShutdownAt(_targetTime, PERIOD_LENGTH, PERIOD_OFFSET)) {
258-
console2.log("IS SHUTDOWN", _targetTime);
259255
return 0;
260256
}
261257
ObservationLib.Observation memory prevOrAtObservation = _getPreviousOrAtObservation(

0 commit comments

Comments
 (0)