diff options
| author | Evan Wilson <evan@oliodevices.com> | 2016-02-05 17:37:46 -0800 |
|---|---|---|
| committer | Evan Wilson <evan@oliodevices.com> | 2016-03-18 13:36:19 -0700 |
| commit | 29ea916b91c9736d3aefdf035e0996c6117c909b (patch) | |
| tree | 3c946591ce276d4f5aabe37d2dd5a8e4f4514aa4 | |
| parent | e5af0a972a9220e43dd2d178c2da75fbf3357e78 (diff) | |
| download | olio-linux-3.10-29ea916b91c9736d3aefdf035e0996c6117c909b.tar.xz olio-linux-3.10-29ea916b91c9736d3aefdf035e0996c6117c909b.zip | |
Decreasing kernel log level
Change-Id: I90e53b5ae11bd53183ccc80fe6b4581b88a3501a
| -rw-r--r-- | kernel/printk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/printk.c b/kernel/printk.c index c247ad5df09..6601d108ade 100644 --- a/kernel/printk.c +++ b/kernel/printk.c @@ -60,7 +60,7 @@ extern void printascii(char *); /* We show everything that is MORE important than this.. */ #define MINIMUM_CONSOLE_LOGLEVEL 1 /* Minimum loglevel we let people use */ -#define DEFAULT_CONSOLE_LOGLEVEL 7 /* anything MORE serious than KERN_DEBUG */ +#define DEFAULT_CONSOLE_LOGLEVEL 1 /* anything MORE serious than KERN_DEBUG */ int console_printk[4] = { DEFAULT_CONSOLE_LOGLEVEL, /* console_loglevel */ |