This file is indexed.

/usr/include/log4shib/Win32DebugAppender.hh is in liblog4shib-dev 1.0.9-3.

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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * Win32DebugAppender.hh
 *
 *
 * See the COPYING file for the terms of usage and distribution.
 */

#ifndef _LOG4SHIB_WIN32DEBUGAPPENDER_HH
#define _LOG4SHIB_WIN32DEBUGAPPENDER_HH

#ifdef WIN32	// only use this on Win32

#include <string>
#include "log4shib/Export.hh"
#include "log4shib/LayoutAppender.hh"

namespace log4shib {

	/**
	 * Win32DebugAppender simply sends the log message to the default system
	 * debugger on Win32 systems.  This is useful for users of MSVC and Borland
	 * because the log messages will show up in the debugger window.<BR>
         * <B>NB:</B> This class is only available on Win32 platforms.
	 */
    class LOG4SHIB_EXPORT Win32DebugAppender : public LayoutAppender {
        public:
		/**
		 * Constructor.
		 * @param name Name used by the base classes only.
		 */
        Win32DebugAppender(const std::string& name);
		/**
		 * Destructor.
		 */
        virtual ~Win32DebugAppender();
        
		/**
		 * Close method.  This is called by the framework, but there is nothing
		 * to do for the OutputDebugString API, so it simply returns.
		 */
        virtual void close();

        protected:
		/**
		 * Method that does the actual work.  In this case, it simply sets up the layout
		 * and calls the OutputDebugString API.
		 * @param event Event for which we are logging.
		 */
        virtual void _append(const LoggingEvent& event);
    };
}

#else // WIN32
#error NTEventLoggAppender is not available on on Win32 platforms
#endif	// WIN32

#endif // _LOG4SHIB_WIN32DEBUGAPPENDER_HH