Skip to content

Commit 2fb6fe7

Browse files
author
li.zhijian
committed
v1.1.6
1 parent f2ff780 commit 2fb6fe7

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

ZJLog.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ZJLog"
3-
s.version = "1.1.5"
3+
s.version = "1.1.6"
44
s.summary = "Log redirection output tool for iOS, support for c、c++、m、mm code files."
55
s.description = <<-DESC
66
Log redirection output tool for iOS, you can set the Log level, redirect output to the proxy interface, save logs to the sandbox, support for c、c++、m、mm code files, and more.

ZJLog.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
0C15FFBB2446DD69002B6507 /* ZJLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C15FFB12446DD69002B6507 /* ZJLog.mm */; };
2121
0C15FFBC2446DD69002B6507 /* ZJLogBridgeOC.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C15FFB22446DD69002B6507 /* ZJLogBridgeOC.h */; };
2222
0C15FFBD2446DD69002B6507 /* ZJLogBridgeC.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C15FFB32446DD69002B6507 /* ZJLogBridgeC.m */; };
23+
0CFCC48B25FA087400FAE6BA /* ZJLog.podspec in Resources */ = {isa = PBXBuildFile; fileRef = 0CFCC48A25FA087400FAE6BA /* ZJLog.podspec */; };
2324
/* End PBXBuildFile section */
2425

2526
/* Begin PBXContainerItemProxy section */
@@ -49,6 +50,7 @@
4950
0C15FFB12446DD69002B6507 /* ZJLog.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ZJLog.mm; sourceTree = "<group>"; };
5051
0C15FFB22446DD69002B6507 /* ZJLogBridgeOC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZJLogBridgeOC.h; sourceTree = "<group>"; };
5152
0C15FFB32446DD69002B6507 /* ZJLogBridgeC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZJLogBridgeC.m; sourceTree = "<group>"; };
53+
0CFCC48A25FA087400FAE6BA /* ZJLog.podspec */ = {isa = PBXFileReference; lastKnownFileType = file; path = ZJLog.podspec; sourceTree = SOURCE_ROOT; };
5254
/* End PBXFileReference section */
5355

5456
/* Begin PBXFrameworksBuildPhase section */
@@ -103,6 +105,7 @@
103105
0C15FFAD2446DD69002B6507 /* ZJPrintfLog.h */,
104106
0C15FFB02446DD69002B6507 /* Singleton.h */,
105107
0C15FF942446DD3B002B6507 /* Info.plist */,
108+
0CFCC48A25FA087400FAE6BA /* ZJLog.podspec */,
106109
);
107110
path = ZJLog;
108111
sourceTree = "<group>";
@@ -213,6 +216,7 @@
213216
isa = PBXResourcesBuildPhase;
214217
buildActionMask = 2147483647;
215218
files = (
219+
0CFCC48B25FA087400FAE6BA /* ZJLog.podspec in Resources */,
216220
);
217221
runOnlyForDeploymentPostprocessing = 0;
218222
};

ZJLog/ZJLog.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
#ifndef ZLog
1313
#define ZLog(...) [ZJLog log:[NSString stringWithFormat:__VA_ARGS__]]
14-
#define CLog JLog
1514
#endif
1615

1716
typedef enum : NSUInteger {

ZJLog/ZJPrintfLog.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ZJPrintfLog.h
3-
// IOTCamera
3+
// ZJLog
44
//
55
// Created by eafy on 2018/7/16.
66
// Copyright © 2018年 ZJ. All rights reserved.
@@ -11,8 +11,6 @@
1111
#ifdef __cplusplus
1212
extern "C" {
1313
#endif
14-
#include <stdio.h>
15-
#include <string>
1614

1715
#ifndef CPrintfLevel
1816
#define CPrintfLevel

0 commit comments

Comments
 (0)