diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-04 21:29:37 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-04 21:29:37 -0500 |
commit | 9f737dbab8b9ed9fa57bdf15542cc00a8363d98b (patch) | |
tree | d32d595e40fb7c89018652a18a84ca2dd0fb0b2b /ui | |
parent | 364b50fe6f9d8aa3871f1229aaef81f3021d2835 (diff) | |
download | horizon-9f737dbab8b9ed9fa57bdf15542cc00a8363d98b.tar.gz horizon-9f737dbab8b9ed9fa57bdf15542cc00a8363d98b.tar.bz2 horizon-9f737dbab8b9ed9fa57bdf15542cc00a8363d98b.tar.xz horizon-9f737dbab8b9ed9fa57bdf15542cc00a8363d98b.zip |
Qt UI: Ensure log is opened when built in release modes
Diffstat (limited to 'ui')
-rw-r--r-- | ui/qt5/runner/executepage.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt5/runner/executepage.cc b/ui/qt5/runner/executepage.cc index 999731a..d5788df 100644 --- a/ui/qt5/runner/executepage.cc +++ b/ui/qt5/runner/executepage.cc @@ -48,7 +48,7 @@ ExecutePage::ExecutePage(QWidget *parent) : HorizonWizardPage(parent) { }); log.setFileName("/var/log/horizon/executor.log"); - Q_ASSERT(log.open(QFile::Append)); + log.open(QFile::Append); this->current = Prepare; markRunning(this->current); |