blob: 0db837a3773cdcc90e1977e9bdd0ab773bfb4291 (
plain)
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
|
# This file contains system wide configuration data for GNU Radio.
# You may override any setting on a per-user basis by editing
# ~/.gnuradio/config.conf
[DEFAULT]
verbose = False
# The maximum number of messages a block will store up before pruning
# the queue by popping messages from the front.
max_messages = 100
[LOG]
# Levels can be (case insensitive):
# trace, debug, info, warn, error, fatal
log_level = all
debug_level = all
# These file names can either be 'stdout' to output to standard output
# or 'stderr' to output to standard error. Any other string will
# create a file in which to output the logging information. An empty
# string or no value here will ignore this level of configuration
# completely.
log_file = stdout
debug_file = stderr
# Used for advanced configuration of the logger
#log_config = @CMAKE_INSTALL_PREFIX@/etc/gnuradio/gr_log_default.xml
[PerfCounters]
on = False
export = True
[ControlPort]
on = False
edges_list = False
config = # @CMAKE_INSTALL_PREFIX@/etc/gnuradio/ctrlport.conf
|