mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 15:31:08 +00:00
34 lines
771 B
Mathematica
34 lines
771 B
Mathematica
|
//
|
||
|
// Copyright (c) 2016-present, Facebook, Inc.
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// This source code is licensed under the BSD-style license found in the
|
||
|
// LICENSE file in the root directory of this source tree. An additional grant
|
||
|
// of patent rights can be found in the PATENTS file in the same directory.
|
||
|
//
|
||
|
|
||
|
#import "SRLog.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
extern void SRErrorLog(NSString *format, ...)
|
||
|
{
|
||
|
__block va_list arg_list;
|
||
|
va_start (arg_list, format);
|
||
|
|
||
|
NSString *formattedString = [[NSString alloc] initWithFormat:format arguments:arg_list];
|
||
|
|
||
|
va_end(arg_list);
|
||
|
|
||
|
NSLog(@"[SocketRocket] %@", formattedString);
|
||
|
}
|
||
|
|
||
|
extern void SRDebugLog(NSString *format, ...)
|
||
|
{
|
||
|
#ifdef SR_DEBUG_LOG_ENABLED
|
||
|
SRErrorLog(tag, format);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|