CMiscMenue: add entry for temporarily debug mode settings

Option "Level" overwrites assigned debug level output mode of Neutrino
start parameters, but only temporarily till change of options by user
or restart of Neutrino.


Origin commit data
------------------
Branch: ni/coolstream
Commit: 8a8748c5e7
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-03-08 (Sat, 08 Mar 2014)



------------------
This commit was generated by Migit
This commit is contained in:
2014-03-08 22:38:12 +01:00
parent a2176524d2
commit bae0f14f3f
8 changed files with 53 additions and 4 deletions

View File

@@ -27,9 +27,15 @@
extern int debug;
#define DEBUG_NORMAL 0
#define DEBUG_INFO 1
#define DEBUG_DEBUG 2
enum
{
DEBUG_NORMAL , // 0
DEBUG_INFO , // 1
DEBUG_DEBUG , // 2
DEBUG_MODES // 3 count of available modes
};
void setDebugLevel( int level );