Browse Source

Remove unecessary print statement

ogert 4 years ago
parent
commit
395ee8f058
1 changed files with 0 additions and 7 deletions
  1. 0 7
      cdplib/db_handlers/MongodbHandler.py

+ 0 - 7
cdplib/db_handlers/MongodbHandler.py

@@ -394,13 +394,6 @@ class MongodbHandler:
         if isinstance(update_value, pd.DataFrame):
             update_value = simplejson.loads(update_value.to_json(orient="records",
                                                  date_format="iso"))
-
-
-        print('-$-'*40)
-        print(('Data for label: {}').format(update_label))
-        print('Size of document:', sys.getsizeof(update_value), 'bytes')
-        print('-$-'*40)
-
         try:
             if query_label and query_value:
                 self._database[collection_name].update_one({query_label:query_value}, {"$set": {update_label: update_value}}, upsert=create_if_not_exist)