-
Notifications
You must be signed in to change notification settings - Fork 0
/
PoziConnect.ini
75 lines (60 loc) · 1.45 KB
/
PoziConnect.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[Application Settings]
LogFile: output/PoziConnect.log
[ENV]
GDAL_BASE: vendor/release-1911-gdal-3-1-4-mapserver-7-6-1/bin
GDAL_DATA: {GDAL_BASE}/gdal-data
PROJ_LIB: {GDAL_BASE}/proj6/share
PATH: {GDAL_BASE};{GDAL_BASE}/gdal/apps
SQLITE_LIST_ALL_TABLES: YES
#Needed for GDAL 1.7.x to work with non-spatial tables:
PG_LIST_ALL_TABLES: YES
PGCLIENTENCODING: LATIN1
[POSIX]
UnsetGDAL_DATA: YES
[UPDATES]
Repository: PoziConnectConfig
[GUI]
Title: Pozi Connect
AppWidth: 800
AppHeight: 600
FontFace: Verdana
FontSize: 10
#############################################
### LOGGING #################################
#############################################
### THIS SECTION DOES NOT WORK YET!!! #######
#############################################
[loggers]
keys=root
[handlers]
keys=fileHandler,consoleHandler
[formatters]
keys=fileFormatter,consoleFormatter
[logger_root]
level=DEBUG
handlers=consoleHandler
[logger_root]
level=DEBUG
handlers=fileHandler,consoleHandler
qualname=PlaceLab
propagate=0
[logger_TaskManager]
level=DEBUG
handlers=consoleHandler
qualname=TaskManager
propagate=0
[handler_consoleHandler]
class=StreamHandler
level=DEBUG
formatter=consoleFormatter
args=(sys.stdout,)
[handler_fileHandler]
class=FileHandler
level=DEBUG
formatter=fileFormatter
args=('{LogFile}', 'w')
[formatter_consoleFormatter]
format=%(name)s - %(levelname)s - %(message)s
[formatter_fileFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
datefmt=