mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
20 lines
396 B
Objective-C
20 lines
396 B
Objective-C
//
|
|
// RKLog.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 6/10/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKLog.h"
|
|
|
|
static BOOL loggingInitialized = NO;
|
|
|
|
void RKLogInitialize() {
|
|
if (loggingInitialized == NO) {
|
|
RKLogConfigureByName("RestKit*", RKLogLevelDefault);
|
|
RKLogInfo(@"RestKit initialized...");
|
|
loggingInitialized = YES;
|
|
}
|
|
}
|