diff --git a/libraries/earner.py b/libraries/earner.py index 6236f46..d7b8b96 100644 --- a/libraries/earner.py +++ b/libraries/earner.py @@ -122,7 +122,7 @@ class earner: def subscribe(self,amount,force_pause=False): print(f"{datetime.datetime.now().strftime('[%Y/%m/%d %H:%M:%S]')} | {str(self.connector).upper()} | Subscribing {amount} {self.currency}") - self.write_to_log(f"Subscribing {amount} {self.currency}") + self.write_to_log(f"{colors.green}Subscribing{colors.white} {amount} {self.currency}") if force_pause: self.pause = True @@ -158,7 +158,7 @@ class earner: def redeem(self,amount,force_pause=False): print(f"{datetime.datetime.now().strftime('[%Y/%m/%d %H:%M:%S]')} | {str(self.connector).upper()} | Redeeming {amount} {self.currency}") - self.write_to_log(f"Redeeming {amount} {self.currency}") + self.write_to_log(f"{colors.red}Redeeming{colors.white} {amount} {self.currency}") if force_pause: self.pause = True