Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Using Modules a...Using Modules a...Adding LogKey to EvenLogType in Event ViewerAdding LogKey to EvenLogType in Event Viewer
Previous
 
Next
New Post
3/31/2011 8:59 PM
 
Hi

I am using DNN 5.6.1 and i used the following code to add a new Event Logkey

Public Shared Sub CreateLogType(ByVal logTypeKey As String, ByVal logTypeFriendlyName As String, ByVal logTypeDescription As String, ByVal logTypeCSSClass As String, ByVal logTypeOwner As String)
            Try
                Dim lc As New DotNetNuke.Services.Log.EventLog.LogController()
                Dim lti As New DotNetNuke.Services.Log.EventLog.LogTypeInfo()
                lti.LogTypeCSSClass = logTypeCSSClass
                lti.LogTypeDescription = logTypeDescription
                lti.LogTypeFriendlyName = logTypeFriendlyName
                lti.LogTypeOwner = logTypeOwner
                ' "DotNetNuke.Logging.EventLogType";
                lti.LogTypeKey = logTypeKey
                lc.AddLogType(lti)
                Dim ltci As New DotNetNuke.Services.Log.EventLog.LogTypeConfigInfo()
                ltci.LogTypeKey = logTypeKey
                ltci.LoggingIsActive = True
                ltci.MailFromAddress = ""
                ltci.MailToAddress = ""
                ltci.EmailNotificationIsActive = False
                lc.AddLogTypeConfigInfo(ltci)
                Dim objEventLogInfo As New DotNetNuke.Services.Log.EventLog.LogInfo()
                objEventLogInfo.LogTypeKey = logTypeKey

            Catch ex As Exception
                DotNetNuke.Services.Exceptions.Exceptions.LogException(ex)
            End Try
        End Sub


It creates the logkey but when I use this following function to add log

Dim objEventLog As New DotNetNuke.Services.Log.EventLog.EventLogController

objEventLog .AddLog (PortalSettings,-1,DotNetNuke .Services .Log .EventLog .EventLogController.EventLogType.EVENT_LOG_CREATED)

The Highlighted one doesn't show up my newly created EventLogKey.

DotNetNuke.Services.Log.EventLog.EventLogController.EventLogType._____ here i want to see my newly Created EventLogKey

Please help me in how to add LogKey to EventLogType
 
New Post
4/1/2011 4:13 AM
 
you need to store the new log type in the database.

Cheers from Germany,
Sebastian Leupold

dnnWerk - The DotNetNuke Experts   German Spoken DotNetNuke User Group

Speed up your DNN Websites with TurboDNN
 
New Post
8/31/2011 3:21 AM
 
Hi - I'm trying to log events, but nothing shows up in the logs.. and nothing errors in this code.. any ideas?

Thanks,

Jay

private void Log(string logType, List details)
{
EventLogController elc = new EventLogController();
LogInfo li = new LogInfo();
li.LogProperties.Add(new LogDetailInfo("Log Type", logType));
li.LogProperties.AddRange(details);
li.LogCreateDate = DateTime.Now;
li.LogTypeKey = "DEBUG";
li.LogPortalID = _portalId;
//_log.AddLog(li);
elc.AddLog(li);

}
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Using Modules a...Using Modules a...Adding LogKey to EvenLogType in Event ViewerAdding LogKey to EvenLogType in Event Viewer


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out