51 lines
1.7 KiB
Objective-C
51 lines
1.7 KiB
Objective-C
// Software License Agreement (BSD License)
|
|
//
|
|
// Copyright (c) 2010-2019, Deusty, LLC
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use of this software in source and binary forms,
|
|
// with or without modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
//
|
|
// * Neither the name of Deusty nor the names of its contributors may be used
|
|
// to endorse or promote products derived from this software without specific
|
|
// prior written permission of Deusty, LLC.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
// Disable legacy macros
|
|
#ifndef DD_LEGACY_MACROS
|
|
#define DD_LEGACY_MACROS 0
|
|
#endif
|
|
|
|
#import <CocoaLumberjack/DDLog.h>
|
|
|
|
/**
|
|
* This class provides a logger for the Apple os_log facility.
|
|
**/
|
|
API_AVAILABLE(macos(10.12), ios(10.0), watchos(3.0), tvos(10.0))
|
|
@interface DDOSLogger : DDAbstractLogger <DDLogger>
|
|
|
|
/**
|
|
* Singleton method
|
|
*
|
|
* @return the shared instance with OS_LOG_DEFAULT.
|
|
*/
|
|
@property (class, readonly, strong) DDOSLogger *sharedInstance;
|
|
|
|
/**
|
|
Designed initializer
|
|
|
|
@param subsystem Desired subsystem in log. Consider "org.example"
|
|
@param category Desired category in log. Consider "Point of interests."
|
|
@return New instance of DDOSLogger.
|
|
|
|
@discussion This method accepts parameters of type (String, String)?
|
|
If both parameters are nil, this method will return logger wrapper for `OS_LOG_DEFAULT`.
|
|
If both parameters are not nil, it will return logger wrapper for `os_log_create(subsystem, category)`
|
|
*/
|
|
- (instancetype)initWithSubsystem:(NSString *)subsystem category:(NSString *)category NS_DESIGNATED_INITIALIZER;
|
|
@end
|