aboutsummaryrefslogtreecommitdiff
path: root/doc/chapters
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-10-19 17:24:59 +0000
committerng0 <ng0@infotropique.org>2017-10-19 17:24:59 +0000
commit75a88df9c49c9e1b0e4d1e3c3df8f6daf2702dda (patch)
tree4ce4d59318e4e13eaef8e88f6784808c121dc5b0 /doc/chapters
parentfe56dd7705c53203b2c56889ad316bff897f4a9e (diff)
downloadgnunet-75a88df9c49c9e1b0e4d1e3c3df8f6daf2702dda.tar.gz
gnunet-75a88df9c49c9e1b0e4d1e3c3df8f6daf2702dda.zip
corrections in developer.texi
Diffstat (limited to 'doc/chapters')
-rw-r--r--doc/chapters/developer.texi37
1 files changed, 16 insertions, 21 deletions
diff --git a/doc/chapters/developer.texi b/doc/chapters/developer.texi
index 53d5a5605..386d94238 100644
--- a/doc/chapters/developer.texi
+++ b/doc/chapters/developer.texi
@@ -1675,8 +1675,8 @@ This scripts takes a list of nodes retrieved directly from PlanetLab or
1675read from a file and a configuration template and creates: 1675read from a file and a configuration template and creates:
1676 1676
1677@itemize @bullet 1677@itemize @bullet
1678@bullet a tasklist which can be executed with gplmt to setup the slaves 1678@item a tasklist which can be executed with gplmt to setup the slaves
1679@bullet a master.cfg file containing a PlanetLab nodes 1679@item a master.cfg file containing a PlanetLab nodes
1680@end itemize 1680@end itemize
1681 1681
1682A configuration template is included in the <contrib>, most important is 1682A configuration template is included in the <contrib>, most important is
@@ -2008,46 +2008,41 @@ careful with it, as log files will grow at alarming rate!)
2008@item @code{GNUNET_FORCE_LOG="core;;;;DEBUG" gnunet-arm -s} Start GNUnet 2008@item @code{GNUNET_FORCE_LOG="core;;;;DEBUG" gnunet-arm -s} Start GNUnet
2009process tree, running the core service under DEBUG level (everything else 2009process tree, running the core service under DEBUG level (everything else
2010will use configured or default level). 2010will use configured or default level).
2011@item
2012
2013@example
2014GNUNET_FORCE_LOG=";gnunet-service-transport_validation.c;;;DEBUG" \
2015gnunet-arm -s
2016@end example
2017 2011
2018Start GNUnet process tree, allowing any logging calls from 2012@item Start GNUnet process tree, allowing any logging calls from
2019gnunet-service-transport_validation.c (everything else will use 2013gnunet-service-transport_validation.c (everything else will use
2020configured or default level). 2014configured or default level).
2021@item
2022 2015
2023@example 2016@example
2024GNUNET_FORCE_LOG="fs;gnunet-service-fs_push.c;;;DEBUG" gnunet-arm -s 2017GNUNET_FORCE_LOG=";gnunet-service-transport_validation.c;;; DEBUG" \
2018gnunet-arm -s
2025@end example 2019@end example
2026 2020
2027Start GNUnet process tree, allowing any logging calls from 2021@item Start GNUnet process tree, allowing any logging calls from
2028gnunet-gnunet-service-fs_push.c (everything else will use configured or 2022gnunet-gnunet-service-fs_push.c (everything else will use configured or
2029default level). 2023default level).
2030 2024
2031@item
2032
2033@example 2025@example
2034GNUNET_FORCE_LOG=";;GNUNET_NETWORK_socket_select;;DEBUG" gnunet-arm -s 2026GNUNET_FORCE_LOG="fs;gnunet-service-fs_push.c;;;DEBUG" gnunet-arm -s
2035@end example 2027@end example
2036 2028
2037Start GNUnet process tree, allowing any logging calls from the 2029@item Start GNUnet process tree, allowing any logging calls from the
2038GNUNET_NETWORK_socket_select function (everything else will use 2030GNUNET_NETWORK_socket_select function (everything else will use
2039configured or default level). 2031configured or default level).
2040 2032
2041@item 2033@example
2034GNUNET_FORCE_LOG=";;GNUNET_NETWORK_socket_select;;DEBUG" gnunet-arm -s
2035@end example
2036
2037@item Start GNUnet process tree, allowing any logging calls from the
2038components that have "transport" in their names, and are made from
2039function that have "send" in their names. Everything else will be allowed
2040to be logged only if it has WARNING level.
2042 2041
2043@example 2042@example
2044GNUNET_FORCE_LOG="transport.*;;.*send.*;;DEBUG/;;;;WARNING" gnunet-arm -s 2043GNUNET_FORCE_LOG="transport.*;;.*send.*;;DEBUG/;;;;WARNING" gnunet-arm -s
2045@end example 2044@end example
2046 2045
2047Start GNUnet process tree, allowing any logging calls from the components
2048that have "transport" in their names, and are made from function that have
2049"send" in their names. Everything else will be allowed to be logged only
2050if it has WARNING level.
2051@end table 2046@end table
2052 2047
2053 2048