Logs into the reproducibility logs that the app has started Can be used to break-up application restarts when scanning logs
(&self)
| 58 | } |
| 59 | |
| 60 | impl ClockSyncAlgorithm { |
| 61 | /// Set the Amazon Time Sync source used by the clock sync algorithm |
| 62 | /// |
| 63 | /// # Panics |
| 64 | /// |
| 65 | /// Panics if an Amazon Time Sync source has already been set. |
| 66 | pub fn set_amazon_time_sync(&mut self, source: source::AmazonTimeSync) { |
| 67 | assert!(self.amazon_time_sync.is_none()); |
| 68 | self.amazon_time_sync = Some(source); |
| 69 | } |