From ac06d4157a77edf57c369db0b546d615c48f54a6 Mon Sep 17 00:00:00 2001 From: Noikoio Date: Wed, 29 Nov 2017 15:33:08 -0800 Subject: [PATCH] Added a sort of welcome message --- RegexBot.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/RegexBot.cs b/RegexBot.cs index 0cf019b..b12fade 100644 --- a/RegexBot.cs +++ b/RegexBot.cs @@ -20,6 +20,13 @@ namespace Noikoio.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 _config = new Configuration(this); if (!_config.LoadInitialConfig())