mirror of
https://gitlab.com/jeancf/twoot.git
synced 2025-02-21 07:42:08 +00:00
Improved INFO messages
This commit is contained in:
parent
314ca28202
commit
62073f5d2a
9
twoot.py
9
twoot.py
|
@ -581,18 +581,19 @@ def main(argv):
|
||||||
logging.info(' twitter_account : ' + TOML['config']['twitter_account'])
|
logging.info(' twitter_account : ' + TOML['config']['twitter_account'])
|
||||||
logging.info(' mastodon_instance : ' + TOML['config']['mastodon_instance'])
|
logging.info(' mastodon_instance : ' + TOML['config']['mastodon_instance'])
|
||||||
logging.info(' mastodon_user : ' + TOML['config']['mastodon_user'])
|
logging.info(' mastodon_user : ' + TOML['config']['mastodon_user'])
|
||||||
|
logging.info(' upload_videos : ' + str(TOML['options']['upload_videos']))
|
||||||
logging.info(' post_reply_to : ' + str(TOML['options']['post_reply_to']))
|
logging.info(' post_reply_to : ' + str(TOML['options']['post_reply_to']))
|
||||||
logging.info(' skip_retweets : ' + str(TOML['options']['skip_retweets']))
|
logging.info(' skip_retweets : ' + str(TOML['options']['skip_retweets']))
|
||||||
logging.info(' remove_link_redirections : ' + str(TOML['options']['remove_link_redirections']))
|
logging.info(' remove_link_redirections : ' + str(TOML['options']['remove_link_redirections']))
|
||||||
logging.info(' remove_trackers_from_urls: ' + str(TOML['options']['remove_trackers_from_urls']))
|
logging.info(' remove_trackers_from_urls: ' + str(TOML['options']['remove_trackers_from_urls']))
|
||||||
logging.info(' upload_videos : ' + str(TOML['options']['upload_videos']))
|
logging.info(' footer : ' + str(TOML['options']['footer']))
|
||||||
logging.info(' remove_original_tweet_ref: ' + str(TOML['options']['remove_original_tweet_ref']))
|
logging.info(' remove_original_tweet_ref: ' + str(TOML['options']['remove_original_tweet_ref']))
|
||||||
logging.info(' tweet_max_age : ' + str(TOML['options']['tweet_max_age']))
|
logging.info(' tweet_max_age : ' + str(TOML['options']['tweet_max_age']))
|
||||||
logging.info(' tweet_delay : ' + str(TOML['options']['tweet_delay']))
|
logging.info(' tweet_delay : ' + str(TOML['options']['tweet_delay']))
|
||||||
logging.info(' toot_cap : ' + str(TOML['options']['toot_cap']))
|
logging.info(' toot_cap : ' + str(TOML['options']['toot_cap']))
|
||||||
logging.info(' twitter substitution : ' + str(TOML['options']['subst_twitter']))
|
logging.info(' subst_twitter : ' + str(TOML['options']['subst_twitter']))
|
||||||
logging.info(' youtube substitution : ' + str(TOML['options']['subst_youtube']))
|
logging.info(' subst_twitter : ' + str(TOML['options']['subst_youtube']))
|
||||||
logging.info(' reddit substitution : ' + str(TOML['options']['subst_reddit']))
|
logging.info(' subst_twitter : ' + str(TOML['options']['subst_reddit']))
|
||||||
|
|
||||||
# Try to open database. If it does not exist, create it
|
# Try to open database. If it does not exist, create it
|
||||||
sql = sqlite3.connect('twoot.db')
|
sql = sqlite3.connect('twoot.db')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user