FreeRDP
libwinpr/utils/wlog/wlog.h File Reference
#include <winpr/wlog.h>
#include "Layout.h"
#include "Appender.h"
This graph shows which files directly or indirectly include this file:

Data Structures

struct  wLogAppender
 
struct  wLog
 

Macros

#define WLOG_MAX_PREFIX_SIZE   512
 
#define WLOG_MAX_STRING_SIZE   8192
 
#define WLOG_APPENDER_COMMON()
 

Typedefs

typedef BOOL(* WLOG_APPENDER_OPEN_FN) (wLog *log, wLogAppender *appender)
 
typedef BOOL(* WLOG_APPENDER_CLOSE_FN) (wLog *log, wLogAppender *appender)
 
typedef BOOL(* WLOG_APPENDER_WRITE_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)
 
typedef BOOL(* WLOG_APPENDER_WRITE_DATA_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)
 
typedef BOOL(* WLOG_APPENDER_WRITE_IMAGE_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)
 
typedef BOOL(* WLOG_APPENDER_WRITE_PACKET_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)
 
typedef BOOL(* WLOG_APPENDER_SET) (wLogAppender *appender, const char *setting, void *value)
 
typedef void(* WLOG_APPENDER_FREE) (wLogAppender *appender)
 

Functions

BOOL WLog_Layout_GetMessagePrefix (wLog *log, wLogLayout *layout, wLogMessage *message)
 

Variables

const char * WLOG_LEVELS [7]
 

Macro Definition Documentation

◆ WLOG_APPENDER_COMMON

#define WLOG_APPENDER_COMMON ( )
Value:
DWORD Type; \
BOOL active; \
wLogLayout* Layout; \
CRITICAL_SECTION lock; \
BOOL recursive; \
void* TextMessageContext; \
void* DataMessageContext; \
void* ImageMessageContext; \
void* PacketMessageContext; \
WLOG_APPENDER_OPEN_FN Open; \
WLOG_APPENDER_CLOSE_FN Close; \
WLOG_APPENDER_WRITE_MESSAGE_FN WriteMessage; \
WLOG_APPENDER_WRITE_DATA_MESSAGE_FN WriteDataMessage; \
WLOG_APPENDER_WRITE_IMAGE_MESSAGE_FN WriteImageMessage; \
WLOG_APPENDER_WRITE_PACKET_MESSAGE_FN WritePacketMessage; \
WLOG_APPENDER_FREE Free; \
WLOG_APPENDER_SET Set
BOOL active
Definition: include/freerdp/event.h:77
static void lock(void)
Definition: signal.c:72
alsa iface Open
Definition: tsmf_alsa.c:233
alsa iface Free
Definition: tsmf_alsa.c:238

◆ WLOG_MAX_PREFIX_SIZE

#define WLOG_MAX_PREFIX_SIZE   512

WinPR: Windows Portable Runtime WinPR Logger

Copyright 2013 Marc-Andre Moreau marca.nosp@m.ndre.nosp@m..more.nosp@m.au@g.nosp@m.mail..nosp@m.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

◆ WLOG_MAX_STRING_SIZE

#define WLOG_MAX_STRING_SIZE   8192

Typedef Documentation

◆ WLOG_APPENDER_CLOSE_FN

typedef BOOL(* WLOG_APPENDER_CLOSE_FN) (wLog *log, wLogAppender *appender)

◆ WLOG_APPENDER_FREE

typedef void(* WLOG_APPENDER_FREE) (wLogAppender *appender)

◆ WLOG_APPENDER_OPEN_FN

typedef BOOL(* WLOG_APPENDER_OPEN_FN) (wLog *log, wLogAppender *appender)

◆ WLOG_APPENDER_SET

typedef BOOL(* WLOG_APPENDER_SET) (wLogAppender *appender, const char *setting, void *value)

◆ WLOG_APPENDER_WRITE_DATA_MESSAGE_FN

typedef BOOL(* WLOG_APPENDER_WRITE_DATA_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)

◆ WLOG_APPENDER_WRITE_IMAGE_MESSAGE_FN

typedef BOOL(* WLOG_APPENDER_WRITE_IMAGE_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)

◆ WLOG_APPENDER_WRITE_MESSAGE_FN

typedef BOOL(* WLOG_APPENDER_WRITE_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)

◆ WLOG_APPENDER_WRITE_PACKET_MESSAGE_FN

typedef BOOL(* WLOG_APPENDER_WRITE_PACKET_MESSAGE_FN) (wLog *log, wLogAppender *appender, wLogMessage *message)

Function Documentation

◆ WLog_Layout_GetMessagePrefix()

BOOL WLog_Layout_GetMessagePrefix ( wLog *  log,
wLogLayout *  layout,
wLogMessage message 
)
Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ WLOG_LEVELS

const char* WLOG_LEVELS[7]
extern

References for general logging concepts:

Short introduction to log4j: http://logging.apache.org/log4j/1.2/manual.html

logging - Logging facility for Python: http://docs.python.org/2/library/logging.html