Added a sort of welcome message

This commit is contained in:
Noikoio 2017-11-29 15:33:08 -08:00
parent 49f8e13650
commit ac06d4157a

View file

@ -20,6 +20,13 @@ namespace Noikoio.RegexBot
internal RegexBot() internal RegexBot()
{ {
// Welcome message
string name = nameof(RegexBot);
string sv = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(3);
Logger.GetLogger(name)
.Invoke($"{name} v{sv} - https://github.com/Noikoio/RegexBot")
.Wait();
// Load configuration // Load configuration
_config = new Configuration(this); _config = new Configuration(this);
if (!_config.LoadInitialConfig()) if (!_config.LoadInitialConfig())