NVIDIA DriveOS Linux NSR SDK API Reference

7.0.3.0 Release
LoggerDefs.h File Reference

Detailed Description

NVIDIA DriveWorks API: Core Warp Primitives

Description: This file defines DW core warp primitives.

Definition in file LoggerDefs.h.

Go to the source code of this file.

Data Structures

struct  dwSourceCodeLocation
 Where in the source code a particular log message originates. More...
 
struct  dwLogMessageInfo
 metatdata associated with a log message More...
 
struct  dwLogMessage
 a textual log message through, e.g., DW_LOG APIs More...
 

Typedefs

typedef enum dwLoggerVerbosity dwLoggerVerbosity
 Holds the verbosity level. More...
 
typedef enum dwSizes dwSizes
 Holds the maximum sizes for various strings. More...
 
typedef struct dwSourceCodeLocation dwSourceCodeLocation
 Where in the source code a particular log message originates. More...
 
typedef struct dwLogMessageInfo dwLogMessageInfo
 metatdata associated with a log message More...
 
typedef struct dwLogMessage dwLogMessage
 a textual log message through, e.g., DW_LOG APIs More...
 

Enumerations

enum  dwLoggerVerbosity {
  DW_LOG_VERBOSE = 0,
  DW_LOG_DEBUG = 1 << 12,
  DW_LOG_INFO = 1 << 13,
  DW_LOG_WARN = (1 << 14) - 4096,
  DW_LOG_ERROR = 1 << 14,
  DW_LOG_FATAL = (1 << 14) + (1 << 12),
  DW_LOG_SILENT = (1 << 15) - 4096
}
 Holds the verbosity level. More...
 
enum  dwSizes {
  DW_LOGGER_SIZE_UNSPECIFIED = 0,
  DW_LOGGER_TAG_SIZE = 64,
  DW_LOGGER_FILE_NAME_SIZE = 256,
  DW_LOGGER_MESSAGE_SIZE = 512
}
 Holds the maximum sizes for various strings. More...