Re: Gnokii-smsd stops working
Daniele Forsi <[email protected]>
| Newsgroups | gmane.linux.drivers.gnokii |
|---|---|
| Message-ID | <CAN_we7PzAxvQ2OLU50EaqLWL-8sntrFFTtuN9Q271gT8do_LhQ@mail.gmail.com> |
2012/12/3 Arminas Keraitis: > In my config file I did : > > debug = on > xdebug = on > > And where I can find the debug outout file? it's printed to stderr depending on how you run smsd, you need to redirect stderr to a file if running from a terminal you can do this so you can see it onscreen and save to a file: smsd .... 2>&1 | tee mylog.txt don't use "tee" if running without a terminal: smsd .... 2>mylog.txt smsd has also an -f option for the command line which is easier to use, but it's not useful in this case because I want to see the low level communication -- Daniele Forsi