diff --git a/coordinator/ProcessorEpidemiology.py b/coordinator/ProcessorEpidemiology.py
index c19b6110781e49bea8513703082b67b9dc4e1b96..746bfbcd1203527652d61a237639072cf18be603 100644
--- a/coordinator/ProcessorEpidemiology.py
+++ b/coordinator/ProcessorEpidemiology.py
@@ -493,11 +493,15 @@ class ProcessorEpidemiology(Processor):
             # Preparing any continue-run files
             if is_continue is True:
 
+                self.logger.debug('This is a continue run.')
+
                 for ci in config_epi['Epi']:
                 
                     model_name = ci['model']
 
                     # Get results of last day and prepare as input
+
+                    self.logger.info(f"Getting a copy of the {model_name} model data to continue from")
                     
                     try:
                         prep.gather_dependent_models(
@@ -552,6 +556,9 @@ class ProcessorEpidemiology(Processor):
 
             # run epi model
 
+            self.logger.info('About to run the epi model.')
+
+
             try:
                 EpiModel.run_epi_model(f"{case_specific_path}/{config_filename}.json")
             except: