Product Screenshots

Support Forum

Discussions and announcements.

You are not logged in. Please login or register.


Post new reply

Post new reply

Compose and post your new reply

You may use: BBCode Images Smilies

All fields labelled (Required) must be completed before the form is submitted.

Required information for guests



   
Required information
[b][i][u][url][email][img][list][*][quote][code][color=]
:) :| :( :D :o ;) :/ :P :lol: :mad: :rolleyes: :cool:
Optional post settings

Topic review (newest first)

2

Hello Lothar,

Log levels are a library-side feature only and there's currently no filter in the Console for this. The feature is already on our (long) TODO list but in the mean time, you could emulate this behavior by using the LogDebug and LogWarning methods and then filter for the log entry types (see the Log Entries tab when editing a view):

SiAuto.Main.LogDebug("Example = " + 20);
SiAuto.Main.LogWarning("Example = " + 20);

Regards,
Tobias

1

Hi all

Is it possible to filter the view from the Level enum used to send a message?

If i send something like
SiAuto.Main.LogInt(Level.Debug, "Example", 20)

I don't find a filter to differ this from the following entry
SiAuto.Main.LogInt(Level.Warning, "Example", 20)

I use the 3.2.2 Version.

Lothar