mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
forgot to add an else branch
This commit is contained in:
@@ -863,7 +863,10 @@ void DBBrowserDB::logSQL(const QString& statement, int msgtype)
|
||||
logst.append(QObject::tr("... <string too wide to log, probably contains binary data> ..."));
|
||||
mainWindow->logSql(logst, msgtype);
|
||||
}
|
||||
mainWindow->logSql(statement, msgtype);
|
||||
else
|
||||
{
|
||||
mainWindow->logSql(statement, msgtype);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user