diff --git a/src/masoniteorm/connections/BaseConnection.py b/src/masoniteorm/connections/BaseConnection.py index ca4cf407..c3256c6b 100644 --- a/src/masoniteorm/connections/BaseConnection.py +++ b/src/masoniteorm/connections/BaseConnection.py @@ -39,7 +39,6 @@ def statement(self, query, bindings=()): raise AttributeError( f"Must set the _cursor attribute on the {self.__class__.__name__} class before calling the 'statement' method." ) - print('qq', query, bindings) self._cursor.execute(query, bindings) end = "{:.2f}".format(timer() - start) diff --git a/src/masoniteorm/query/QueryBuilder.py b/src/masoniteorm/query/QueryBuilder.py index a3830b1f..651d50d8 100644 --- a/src/masoniteorm/query/QueryBuilder.py +++ b/src/masoniteorm/query/QueryBuilder.py @@ -1454,8 +1454,6 @@ def update( elif not updates: # Do not perform query if there are no updates return self - - print('ooo', updates) self._updates = (UpdateQueryExpression(updates),) self.set_action("update") diff --git a/src/masoniteorm/scopes/TimeStampsScope.py b/src/masoniteorm/scopes/TimeStampsScope.py index 5f0e2c7b..fa292042 100644 --- a/src/masoniteorm/scopes/TimeStampsScope.py +++ b/src/masoniteorm/scopes/TimeStampsScope.py @@ -35,12 +35,9 @@ def set_timestamp_update(self, builder): if not builder._model.__timestamps__: return builder - print(builder._updates[0]) for update in builder._updates: if builder._model.date_updated_at in update.column: - print("not updating this is right") return - print("still updating. this is wrong") builder._updates += ( UpdateQueryExpression( {