Logging application block-how configure different listeners for different level of message.

and AvanadeSupport gave me the answer to use  "Filter" property of the tracelistener.
MSDN Source Schema for the Logging Application Block   documents listeners Child Element (loggingConfiguration)/add Child Element
Now I am able to make configuration like the following

<loggingConfiguration name="Logging Application Block" tracingEnabled="true">
<categorySources>
      <add switchValue="All" name="MyApp">
           <listeners>
                 <add name="EventLog Listener" />
                <add name="EMailErrors TraceListener" />
           </listeners>
      </add>
</categorySources
<listeners>
      <
add name="EMailErrors TraceListener"     filter="Error"
type="Microsoft.Practices.EnterpriseLibrary.Logging.TraceListeners.EmailTraceListener, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null
            
toAddress="to@example.com"
              
fromAddress="from@example.com"
              
subjectLineStarter="test end"
              
subjectLineEnder="test start"
              
smtpServer
="127.0.0.1"
              
smtpPort="25"
              
formatter
=" Simple Text Formatter "
              
listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration. EmailTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null"
              
traceOutputOptions="None" 
               /
>
      </add>
</
listeners>
</loggingConfiguration> 
Do NOT confuse listeners/add filter property (local for a listener) with  logFilters section(global for the LAB).
 

Error: "Autogrow of file in database was timed out"

We've had an error
Autogrow of file 'MyDatabase_dat' in database 'MyDatabase' was cancelled by user or timed out after 30078 milliseconds. Use ALTER DATABASE to set a smaller FILEGROWTH value for this file or to explicitly set a new file size.

I was able to fix the issue  using:
ALTER DATABASE MyDatabase
MODIFY FILE ( NAME = MyDatabase_dat, size=5000MB)

We should follow the best practices from MSDN article "Considerations for the "autogrow" and "autoshrink" settings in SQL Server"   

In particular, use alerts or monitoring programs to monitor file sizes and grow files proactively. To reduce the possibility of running out of space, you can monitor the Performance Monitor counter SQL Server: Databases Object :Data File(s) Size (KB) and set up an alert for when the database reaches a certain size.

MSDN Article PRB: A Timeout Occurs When a Database Is Automatically Expanding    has a few issues: Is it applicable for SQL 2005and 2008? If not,what are corresponding articles?It's not clear, that "Expand the database manually." is the recommended method.There are no examples of the ALTER DATABASE statement.
Update: to investigate why the DB has too much space, see my post Stored procedure to find the biggest tables in the database
«January»
SunMonTueWedThuFriSat
28293031123
45678910
11121314151617
18192021222324
25262728293031
1234567