diff --git a/b_asic/GUI/simulate_sfg_window.py b/b_asic/GUI/simulate_sfg_window.py index 75d2612094f95472cbc6cc632a8a678e6874a19c..48e584dc87e045322f5d92946b431d32d7e180b5 100644 --- a/b_asic/GUI/simulate_sfg_window.py +++ b/b_asic/GUI/simulate_sfg_window.py @@ -114,7 +114,7 @@ class Plot(FigureCanvas): self._plot_values_sfg() def _save_plot_figure(self): - self._window.logger.info(f"Saving plot of figure: {self.sfg.name}") + self._window.logger.info(f"Saving plot of figure: {self.sfg.name}.") file_choices = "PNG (*.png)|*.png" path, ext = QFileDialog.getSaveFileName(self, "Save file", "", file_choices) path = path.encode("utf-8") @@ -123,6 +123,7 @@ class Plot(FigureCanvas): if path: self.print_figure(path.decode(), dpi=self.dpi) + self._window.logger.info(f"Saved plot: {self.sfg.name} to path: {path}.") def _plot_values_sfg(self): x_axis = list(range(len(self.simulation.results.keys())))