summaryrefslogtreecommitdiff
path: root/DAnCE/tools/Logger_Backend/ndds/Log_Record.idl
blob: d49a0c7298c9c4689372cd196f5f04651517de20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * @file Log_Record.idl
 * @author William R. Otte
 *
 * Defines a data structure for DAnCE log records.
 */

module DAnCE
{

  struct Log_Record
  {
    /// The name of the node this originates from, if available
    string node;

    /// The process ID of the node.
    long pid;

    /// The log priority of the message
    unsigned long priority;

    /// The error diagnostic
    string message;
  };
};