Changed type of debug setting for inputs/outputs to "debug" instead of "uint".

This commit is contained in:
Thulinma 2015-02-20 17:05:51 +01:00
parent 9a0e009069
commit 4586289c83
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ namespace Mist {
capa["optional"]["debug"]["name"] = "debug";
capa["optional"]["debug"]["help"] = "The debug level at which messages need to be printed.";
capa["optional"]["debug"]["option"] = "--debug";
capa["optional"]["debug"]["type"] = "uint";
capa["optional"]["debug"]["type"] = "debug";
packTime = 0;
lastActive = Util::epoch();

View file

@ -29,7 +29,7 @@ namespace Mist {
capa["optional"]["debug"]["name"] = "debug";
capa["optional"]["debug"]["help"] = "The debug level at which messages need to be printed.";
capa["optional"]["debug"]["option"] = "--debug";
capa["optional"]["debug"]["type"] = "uint";
capa["optional"]["debug"]["type"] = "debug";
}
Output::Output(Socket::Connection & conn) : myConn(conn) {