<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>
https://fedorahosted.org/sssd/ticket/394<br><br>I was reviewing this ticket and talks about a default value to verbosity.<br><br>althought i'm not sure if is about the sssd debug level or other case.<br><br>If the case of debug level:<br><br>Reading theory in<br>&nbsp;&nbsp; http://sgallagh.fedorapeople.org/sssd/1.8.91/man/sssd.conf.5.html <br>in section debug_level (integer) mentions that:<br><br>&nbsp; "0x0010 is the default value as well as the lowest allowed value"<br>&nbsp; "0x0010: Fatal failures. Anything that would prevent SSSD from starting up or causes it to cease running."<br><br>If you want to use a higher debug level is changed in sssd.conf-&gt; debug_level = (desired level is placed).<br><br>By not specifying on command line flag, is used the indicated in sssd.conf -&gt;debug_level.<br><br>If specified in command line debug_level first uses the command line, this was corrected in the ticket https://fedorahosted.org/sssd/ticket/764<br><br>In the case concerned from that, the flag already exists.<br><br>util.h<br>[code]<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /** \def DEBUG_IS_SET(level)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \brief checks whether level (must be in new format) is set in debug_level<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \param level the debug level, please use one of the SSSDBG*_ macros<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; */<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #define DEBUG_IS_SET(level) (debug_level &amp; (level))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #define CONVERT_AND_SET_DEBUG_LEVEL(new_value) debug_level = ( \<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ((new_value) != SSSDBG_INVALID) \<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ? debug_convert_old_level(new_value) \<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : SSSDBG_UNRESOLVED /* Debug level should be loaded from config file. */ \<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );<br>[/code]<br>                                               </div></body>
</html>