123456789101112131415161718192021222324252627282930313233 |
- //
- // 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
|