view backend/sqlalchemy/util.py @ 249:5695197a3ca5

Add an about Qt help menu item
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 09 Jun 2016 05:19:03 +0200
parents bb3c851b18b1
children
line wrap: on
line source

# -*- coding: utf-8 -*-
import sys

def databaseLoggingEnabled():
    loggingEnabled = False
    for arg in sys.argv:
        if arg == "--databaseLogging":
            loggingEnabled = True
    return loggingEnabled