mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-19 18:40:13 -06:00
Remove some debug messages. Change some error messages..
Remove some useless debug messages, e.g. because they just print an SQL string which you can see in the SQL log window anyway. Change some "critical" errors messages to just warning. No sense in printing a critical error message when the program can handle the problem by itself.
This commit is contained in:
@@ -7,8 +7,6 @@
|
||||
|
||||
#include "sqlitedb.h"
|
||||
|
||||
#include <QDebug>
|
||||
|
||||
EditTableDialog::EditTableDialog(DBBrowserDB* db, const QString& tableName, QWidget* parent)
|
||||
: QDialog(parent),
|
||||
ui(new Ui::EditTableDialog),
|
||||
@@ -30,7 +28,6 @@ EditTableDialog::EditTableDialog(DBBrowserDB* db, const QString& tableName, QWid
|
||||
|
||||
// Existing table, so load and set the current layout
|
||||
QString sTablesql = pdb->getTableSQL(curTable);
|
||||
//qDebug() << sTablesql;
|
||||
m_table = sqlb::Table::parseSQL(sTablesql);
|
||||
populateFields();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user