xdripswift/xdrip/Constants/ConstantsLog.swift

132 lines
4.9 KiB
Swift
Raw Normal View History

/// for use in OSLog
enum ConstantsLog {
/// for use in OSLog
static let subSystem = "xDrip"
/// for use in NSLog
static let tracePrefix = "xDrip-NSLog"
/// for use in OSLog
static let categoryBlueToothTransmitter = "BlueToothTransmitter "
/// for use in cgm transmitter miaomiao
static let categoryCGMMiaoMiao = "CGMMiaoMiao "
2019-07-29 10:42:48 +02:00
/// for use in cgm transmitter bubble
static let categoryCGMBubble = "CGMBubble "
/// for use in cgm xdripg4
static let categoryCGMxDripG4 = "CGMxDripG4 "
/// for use in firstview
static let categoryRootView = "RootView "
/// calibration
static let categoryCalibration = "Calibration "
/// debuglogging
static let debuglogging = "xdripdebuglogging"
/// timestamp format for nslog
static let dateFormatNSLog = "y-MM-dd-HH:mm:ss.SSSS"
/// G5
static let categoryCGMG5 = "CGMG5 "
/// watlaa
static let categoryWatlaa = "Watlaa"
/// GNSEntry
static let categoryCGMGNSEntry = "CGMGNSEntry "
/// Blucon
static let categoryBlucon = "Blucon "
/// core data manager
static let categoryCoreDataManager = "CoreDataManager "
/// application data bgreadings
static let categoryApplicationDataBgReadings = "ApplicationDataBgReadings "
/// application data calibrations
static let categoryApplicationDataCalibrations = "ApplicationDataCalibrations "
/// application data sensors
static let categoryApplicationDataSensors = "ApplicationDataSensors "
/// application data alerttypes
static let categoryApplicationDataAlertTypes = "ApplicationDataAlertTypes "
/// application data alertentries
static let categoryApplicationDataAlertEntries = "ApplicationDataAlertEntries "
/// application data for M5Stack
static let categoryApplicationDataM5Stacks = "ApplicationDataM5Stacks "
/// application data for M5Stack
static let categoryApplicationDataWatlaa = "ApplicationDataWatlaa"
2020-02-08 00:18:23 +01:00
/// application data for BLEPeripheral
static let categoryApplicationDataBLEPeripheral = "ApplicationDataBLEPeripheral"
/// application data for DexcomG5
static let categoryApplicationDataDexcomG5 = "ApplicationDataDexcomG5"
/// application for for M5StackName
static let categoryApplicationDataM5StackNames = "ApplicationDataM5StackNames "
/// nightscout uploader
static let categoryNightScoutUploadManager = "NightScoutUploadManager "
/// nightscout follow
static let categoryNightScoutFollowManager = "NightScoutFollowManager "
/// alertmanager
static let categoryAlertManager = "AlertManager "
/// playsound
static let categoryPlaySound = "PlaySound "
/// healthkit manager
static let categoryHealthKitManager = "HealthKitManager "
/// SettingsViewHealthKitSettingsViewModel
static let categorySettingsViewHealthKitSettingsViewModel = "SettingsViewHealthKitSettingsViewModel"
/// dexcom share upload manager
static let categoryDexcomShareUploadManager = "DexcomShareUploadManager "
2019-08-02 23:03:27 +02:00
/// droplet 1
static let categoryCGMDroplet1 = "CGMDroplet1 "
/// bluereader
static let categoryCGMBlueReader = "CGMBlueReader "
/// LibreOOPClient
static let categoryLibreOOPClient = "LibreOOPClient "
2019-09-12 08:37:35 +02:00
/// for use in M5Stack
static let categoryM5StackBluetoothTransmitter = "M5StackBluetoothTransmitter "
/// BluetoothPeripheralManager logging
static let categoryBluetoothPeripheralManager = "BluetoothPeripheralManager "
2019-09-12 08:37:35 +02:00
/// StatusChartsManager logging
static let categoryGlucoseChartManager = "GlucoseChartManager "
/// SettingsViewAppleWatchSettingsViewModel logging
static let categorySettingsViewAppleWatchSettingsViewModel = "SettingsViewAppleWatchSettingsViewModel"
/// WatchManager logging
static let categoryWatchManager = "WatchManager "
/// bluetoothPeripheralViewController
2020-05-02 22:54:03 +02:00
static let categoryBluetoothPeripheralViewController = "blePeripheralViewController "
2020-05-02 22:54:03 +02:00
static let categoryNightScoutSettingsViewModel = "nightScoutSettingsViewModel "
2020-05-02 22:54:03 +02:00
static let categoryTraceSettingsViewModel = "TraceSettingsViewModel"
}