This file is indexed.

/usr/include/dolfin/log/LogLevel.h is in libdolfin-dev 1.4.0+dfsg-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __LOGLEVEL_H
#define __LOGLEVEL_H

namespace dolfin
{
  // These log levels match the levels in the Python 'logging' module
  // (and adds trace/progress).

  enum LogLevel
  {
    CRITICAL  = 50, // errors that may lead to data corruption and suchlike
    ERROR     = 40, // things that go boom
    WARNING   = 30, // things that may go boom later
    INFO      = 20, // information of general interest
    PROGRESS  = 16, // what's happening (broadly)
    TRACE     = 13, // what's happening (in detail)
    DBG       = 10  // sundry
  };
}

#endif