File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use http::FpHttpHandler;
1111use std:: sync:: Arc ;
1212use time:: macros:: format_description;
1313use time:: UtcOffset ;
14- use tracing:: error ;
14+ use tracing:: info ;
1515use tracing_subscriber:: fmt:: layer;
1616use tracing_subscriber:: fmt:: time:: { OffsetTime , SystemTime } ;
1717use tracing_subscriber:: layer:: SubscriberExt ;
@@ -40,20 +40,20 @@ async fn main() -> Result<()> {
4040
4141async fn start ( server_config : ServerConfig ) -> Result < ( ) > {
4242 init_log ( ) ;
43- error ! ( "FeatureProbe Server Commit: {}" , env!( "VERGEN_GIT_SHA" ) ) ;
44- error ! (
43+ info ! ( "FeatureProbe Server Commit: {}" , env!( "VERGEN_GIT_SHA" ) ) ;
44+ info ! (
4545 "FeatureProbe Server BuildTs: {}" ,
4646 env!( "VERGEN_BUILD_TIMESTAMP" )
4747 ) ;
48- error ! (
48+ info ! (
4949 "FeatureProbe Server CommitTs: {}" ,
5050 env!( "VERGEN_GIT_COMMIT_TIMESTAMP" )
5151 ) ;
52- error ! (
52+ info ! (
5353 "FeatureProbe Server Cargo Profile: {}" ,
5454 env!( "VERGEN_CARGO_PROFILE" )
5555 ) ;
56- error ! ( "FeatureProbe Server Config: {}" , server_config) ;
56+ info ! ( "FeatureProbe Server Config: {}" , server_config) ;
5757
5858 #[ cfg( feature = "realtime" ) ]
5959 let realtime_socket = {
You can’t perform that action at this time.
0 commit comments