diff --git a/docs/onionr-logo.png b/docs/onionr-logo.png new file mode 100644 index 00000000..f52533f0 Binary files /dev/null and b/docs/onionr-logo.png differ diff --git a/onionr/communicator.py b/onionr/communicator.py index 8079e72c..b9339860 100755 --- a/onionr/communicator.py +++ b/onionr/communicator.py @@ -20,7 +20,7 @@ and code to operate as a daemon, getting commands from the command queue databas along with this program. If not, see . ''' import sqlite3, requests, hmac, hashlib, time, sys, os, math, logger, urllib.parse -import core, onionrutils, onionrcrypto, onionrproofs, btc, config +import core, onionrutils, onionrcrypto, onionrproofs, btc, config, onionrplugins as plugins class OnionrCommunicate: def __init__(self, debug, developmentMode): @@ -76,7 +76,7 @@ class OnionrCommunicate: blockProcessTimer = 0 if command != False: if command[0] == 'shutdown': - logger.warn('Daemon recieved exit command.') + logger.info('Daemon recieved exit command.') break time.sleep(1) @@ -218,7 +218,7 @@ class OnionrCommunicate: shouldRun = False debug = True developmentMode = False -if logger.get('devmode', True): +if config.get('devmode', True): developmentMode = True try: if sys.argv[1] == 'run': diff --git a/readme.md b/readme.md index c90492e9..8746ddb2 100644 --- a/readme.md +++ b/readme.md @@ -1,8 +1,10 @@ +![Onionr logo](./docs/onionr-logo.png) + # Onionr [![Build Status](https://travis-ci.org/beardog108/onionr.svg?branch=master)](https://travis-ci.org/beardog108/onionr) -P2P platform, using Tor & I2P. +Anonymous P2P platform, using Tor & I2P. Major work in progress.