VLDLogging

@interface VLDLogging : NSObject

// Enables or disbales loggin to the console
@property(nonatomic) BOOL isEnabled;
/*
 Mask to output debug messages from Validic Frameworks. Ex: [[VLDLogging sharedInstance] setLog:VLDLogBluetooth & VLDLogCore];
 */
@property(nonatomic) NSUInteger log;

/** sharedInstance returns the VLDLogging singleton and should be the only way VLDLogging is accessed. */
+ (instancetype)sharedInstance;

@end

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic) BOOL isEnabled

    Swift

    var isEnabled: Bool { get set }
  • log

    Undocumented

    Declaration

    Objective-C

    @property(nonatomic) NSUInteger log

    Swift

    var log: UInt { get set }
  • sharedInstance returns the VLDLogging singleton and should be the only way VLDLogging is accessed.

    Declaration

    Objective-C

    + (instancetype)sharedInstance;

    Swift

    class func sharedInstance() -> Self!