summaryrefslogtreecommitdiff
path: root/src/gsmd/gsmd.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2013-03-14 20:50:04 +0100
committerHarald Welte <laforge@gnumonks.org>2013-03-14 20:50:04 +0100
commit93b5b8fe5e7c7be7474bee08879e723cfa45f917 (patch)
treed852132545df4efd1b7c9ab0a88f2b4ed0aa90e5 /src/gsmd/gsmd.c
parent805406e9fbb38f45a2ecea94ca58dbe94509c36f (diff)
gsmd: introduce command line option for log level
Diffstat (limited to 'src/gsmd/gsmd.c')
-rw-r--r--src/gsmd/gsmd.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/gsmd/gsmd.c b/src/gsmd/gsmd.c
index c213a6f..3bb25a6 100644
--- a/src/gsmd/gsmd.c
+++ b/src/gsmd/gsmd.c
@@ -51,6 +51,8 @@
#define GSMD_ALIVE_INTERVAL 5*60
#define GSMD_ALIVE_TIMEOUT 30
+extern int loglevel;
+
static struct gsmd g;
static int daemonize = 0;
@@ -318,6 +320,7 @@ static struct option opts[] = {
{ "device", 1, NULL, 'p' },
{ "speed", 1, NULL, 's' },
{ "logfile", 1, NULL, 'l' },
+ { "loglevel", 1, NULL, 'e' },
{ "hwflow", 0, NULL, 'F' },
{ "leak-report", 0, NULL, 'L' },
{ "vendor", 1, NULL, 'v' },
@@ -348,6 +351,7 @@ static void print_usage(void)
"\t-F\t--hwflow\tHardware Flow Control (RTS/CTS)\n"
"\t-L\t--leak-report\tLeak Report of talloc memory allocator\n"
"\t-l file\t--logfile file\tSpecify a logfile to log to\n"
+ "\t-e <0-255>\t--loglevel <0-255>\tSpecify the log level (1=debug, 8=fatal)\n"
"\t-v\t--vendor v\tSpecify GSM modem vendor plugin\n"
"\t-m\t--machine m\tSpecify GSM modem machine plugin\n"
"\t-w\t--wait m\tWait for the AT Interpreter Ready message\n"
@@ -391,7 +395,7 @@ int main(int argc, char **argv)
print_header();
/*FIXME: parse commandline, set daemonize, device, ... */
- while ((argch = getopt_long(argc, argv, "FVLdhp:s:l:v:m:w:", opts, NULL)) != -1) {
+ while ((argch = getopt_long(argc, argv, "FVLdhp:s:l:e:v:m:w:", opts, NULL)) != -1) {
switch (argch) {
case 'V':
print_version();
@@ -423,6 +427,9 @@ int main(int argc, char **argv)
exit(2);
}
break;
+ case 'e':
+ loglevel = atoi(optarg);
+ break;
case 'v':
vendor_name = optarg;
break;
@@ -514,7 +521,7 @@ int main(int argc, char **argv)
if (errno == EINTR)
continue;
else {
- DEBUGP("select returned error (%s)\n",
+ gsmd_log(GSMD_ERROR, "select returned error (%s)\n",
strerror(errno));
break;
}
personal git repositories of Harald Welte. Your mileage may vary