Skip to content

Commit

Permalink
Added some logging capabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
SimplisticCode committed Dec 11, 2023
1 parent 15c5cea commit e8994cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object GenerationAPI extends Logging {
* Synthesize an orchestration algorithm with respect to the scenario model.
*/
def synthesizeAlgorithm(name: String, scenarioModel: ScenarioModel): MasterModel = {
logger.info("Synthesizing algorithm")
logger.info("Synthesizing algorithm for scenario: " + scenarioModel.toConf(0))
val simplifiedScenario = simplifyScenario(scenarioModel)
val synthesizer = new SynthesizerSimple(simplifiedScenario)
val instantiationModel = ScenarioLoader.generateInstantiationInstructions(simplifiedScenario).toList
Expand Down

0 comments on commit e8994cf

Please sign in to comment.