Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

LoggerService.Info(String) Method

Allows you to log document-related server-side events.

Namespace: DevExpress.XtraReports.Web.ClientControls

Assembly: DevExpress.XtraReports.v24.2.Web.dll

NuGet Package: DevExpress.Web.Reporting.Common

#Declaration

public virtual void Info(
    string message
)

#Parameters

Name Type Description
message String

A string that specifies the information message.

#Remarks

The Info method enables you to log document-related information messages.

Examples of information messages and the actions that triggered them are shown in the following table:

Action Sample Message
Document creation starts. StartBuild operation. Id: 45fd70ba66828a1cf24114e54e54bf24. Name: ‘TestReport’.
Request for a document is sent to the server. GetDocumentData request. Id: f1d289ee58a959b2d9e76e766d8cfa03.
Document cache is cleared. Release document. Id: f1d289ee58a959b2d9e76e766d8cfa03
Export to PDF command is executed. GetExportResult operation. Export operation ID: cf946196d6bc620d818a2c96074b7878, print action requested: False, file name: XtraReport1.pdf
Print command is executed. StartExport operation. Document ID: cebaba1e3489813f8580468345dfea9c, format: printpdf, export operation ID: 54813e598f580176f6aca1d7266eeb36, export options: {“PrintPreview“:{“@DefaultFileName“:“XtraReport1“},“MailMessage“:{“@PageBorderColor“:“Black“,“@Title“:“XtraReport1“},“Html“:{“@EmbedImagesInHTML“:“true“,“@Title“:“XtraReport1“},“Mht“:{“@Title“:“XtraReport1“},“Pdf“:{“@ShowPrintDialogOnOpen“:“true“,“@PageRange”:1}}.
Export to CSV command is executed. GetExportResult operation. Export operation ID: c81ff928f3482d889c5ee49f9060d368, print action requested: False, file name: XtraReport1.csv

For more information and examples of use, review the following help topic: LoggerService.

See Also