1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 module com
{ module sun
{ module star
{ module logging
{
24 /** assembles the complete information about a to-be-logged event
32 /// specifies the name of the logger at which the record is logged
35 /** specifies the name of the class, in which the record was logged.
37 This name might be empty, in case the caller to one of the various
38 <code>log</code> methods of XLogger did not specify it.
40 string SourceClassName
;
42 /** specifies the name of the method, in which the record was logged.
44 This name might be empty, in case the caller to one of the various
45 <code>log</code> methods of XLogger did not specify it.
47 string SourceMethodName
;
49 /// specifies the to-be-logged message
52 /// specifies the time at which the event was logged
53 ::com
::sun
::star
::util
::DateTime
56 /** specifies the number of the log event.
58 Subsequent events get assigned increasing sequence numbers by the XLogger
59 at which they're logged.
63 /// specifies the ID of the thread in which the event was logged
66 /** specifies the level of the log event
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */