Skip to content

Commit

Permalink
Merge pull request #321 from chase9/beta
Browse files Browse the repository at this point in the history
Change translation error to warning to prevent user notifications.
  • Loading branch information
l0drex authored Dec 20, 2024
2 parents 09c3efb + 556344f commit 3fcd817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yin_yang/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def systray_icon_clicked(reason: QSystemTrayIcon.ActivationReason):
raise FileNotFoundError('Error while loading application translations!')

except Exception as e:
logger.error(str(e))
logger.warning(str(e))
print('Error while loading translation. Using default language.')

# show systray icon
Expand Down

0 comments on commit 3fcd817

Please sign in to comment.