aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/log.h
blob: 54691f530751c7e0078f58e219e74b6ea355840f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef LOG_H
#define LOG_H

#include "db/db.h"
#include "coreSQLiteStudio_global.h"
#include <QString>
#include <QHash>
#include <QList>
#include <QVariant>

class QueryExecutorStep;

API_EXPORT QString getLogDateTime();
API_EXPORT void logSql(Db* db, const QString& str, const QHash<QString,QVariant>& args, Db::Flags flags);
API_EXPORT void logSql(Db* db, const QString& str, const QList<QVariant>& args, Db::Flags flags);
API_EXPORT void logExecutorStep(QueryExecutorStep* step);
API_EXPORT void logExecutorAfterStep(const QString& str);
API_EXPORT bool isExecutorLoggingEnabled();
API_EXPORT void setSqlLoggingEnabled(bool enabled);
API_EXPORT void setSqlLoggingFilter(const QString& filter);
API_EXPORT void setExecutorLoggingEnabled(bool enabled);

#endif // LOG_H