File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ public IFullNode Initialize(IFullNodeServiceProvider serviceProvider)
178178
179179 this . AsyncProvider = this . Services . ServiceProvider . GetService < IAsyncProvider > ( ) ;
180180
181- this . logger . LogInformation ( Properties . Resources . Logo . Replace ( "{title}" , this . Network . Name + " - Full Consensus Validating Node" ) ) ;
181+ this . logger . LogInformation ( Properties . BlockcoreLogo . Logo ) ;
182182 this . logger . LogInformation ( "Full node initialized on {0}." , this . Network . Name ) ;
183183
184184 this . State = FullNodeState . Initialized ;
Original file line number Diff line number Diff line change 1+ namespace Blockcore . Properties
2+ {
3+ public static class BlockcoreLogo
4+ {
5+ static BlockcoreLogo ( )
6+ {
7+ LogoTemplate = Resources . Logo ;
8+ SetTitle ( "Full Consensus Validating Node" ) ;
9+ }
10+
11+ public static void SetTitle ( string title )
12+ {
13+ Logo = LogoTemplate . Replace ( "{title}" , title ) ;
14+ }
15+
16+ public static string LogoTemplate { get ; set ; }
17+
18+ public static string Logo { get ; set ; }
19+ }
20+ }
You can’t perform that action at this time.
0 commit comments