We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5972e47 commit c413840Copy full SHA for c413840
src/server/mod.rs
@@ -74,8 +74,10 @@ pub fn run(config: Config, bind: SocketAddr) -> Fallible<()> {
74
})
75
.transpose()?;
76
let agents = Agents::new(db.clone(), &tokens)?;
77
+ info!("loaded agents...");
78
let acl = ACL::new(&config, github_data.as_ref())?;
79
let metrics = Metrics::new()?;
80
+ info!("initialized metrics...");
81
82
let data = Data {
83
config,
@@ -90,6 +92,7 @@ pub fn run(config: Config, bind: SocketAddr) -> Fallible<()> {
90
92
let mutex = Arc::new(Mutex::new(data.clone()));
91
93
94
data.reports_worker.spawn(data.clone(), github_data.clone());
95
+ info!("spawned reports worker...");
96
cronjobs::spawn(data.clone());
97
98
info!("running server on {}...", bind);
0 commit comments