Changed type of debug setting for inputs/outputs to "debug" instead of "uint".
This commit is contained in:
parent
9a0e009069
commit
4586289c83
2 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ namespace Mist {
|
||||||
capa["optional"]["debug"]["name"] = "debug";
|
capa["optional"]["debug"]["name"] = "debug";
|
||||||
capa["optional"]["debug"]["help"] = "The debug level at which messages need to be printed.";
|
capa["optional"]["debug"]["help"] = "The debug level at which messages need to be printed.";
|
||||||
capa["optional"]["debug"]["option"] = "--debug";
|
capa["optional"]["debug"]["option"] = "--debug";
|
||||||
capa["optional"]["debug"]["type"] = "uint";
|
capa["optional"]["debug"]["type"] = "debug";
|
||||||
|
|
||||||
packTime = 0;
|
packTime = 0;
|
||||||
lastActive = Util::epoch();
|
lastActive = Util::epoch();
|
||||||
|
|
|
@ -29,7 +29,7 @@ namespace Mist {
|
||||||
capa["optional"]["debug"]["name"] = "debug";
|
capa["optional"]["debug"]["name"] = "debug";
|
||||||
capa["optional"]["debug"]["help"] = "The debug level at which messages need to be printed.";
|
capa["optional"]["debug"]["help"] = "The debug level at which messages need to be printed.";
|
||||||
capa["optional"]["debug"]["option"] = "--debug";
|
capa["optional"]["debug"]["option"] = "--debug";
|
||||||
capa["optional"]["debug"]["type"] = "uint";
|
capa["optional"]["debug"]["type"] = "debug";
|
||||||
}
|
}
|
||||||
|
|
||||||
Output::Output(Socket::Connection & conn) : myConn(conn) {
|
Output::Output(Socket::Connection & conn) : myConn(conn) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue