Skip to content

Commit

Permalink
include old custom logger for test target
Browse files Browse the repository at this point in the history
  • Loading branch information
velicuvlad committed Jan 6, 2025
1 parent 325de58 commit a3963f0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CouchbaseLite.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1820,6 +1820,7 @@
AEAFDD982D15EC3B00BA5C9C /* LogTestOld.m in Sources */ = {isa = PBXBuildFile; fileRef = AEAFDD962D15EC3000BA5C9C /* LogTestOld.m */; };
AEAFDD992D15EC3B00BA5C9C /* LogTestOld.m in Sources */ = {isa = PBXBuildFile; fileRef = AEAFDD962D15EC3000BA5C9C /* LogTestOld.m */; };
AEAFDD9A2D15EC3B00BA5C9C /* LogTestOld.m in Sources */ = {isa = PBXBuildFile; fileRef = AEAFDD962D15EC3000BA5C9C /* LogTestOld.m */; };
AEAFDDD32D2C4B1A00BA5C9C /* CustomLoggerOld.m in Sources */ = {isa = PBXBuildFile; fileRef = AEAFDD8D2D15EBC400BA5C9C /* CustomLoggerOld.m */; };
AEC806B72C89EA68001C9723 /* CBLArrayIndexConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC806B52C89EA68001C9723 /* CBLArrayIndexConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
AEC806B82C89EA68001C9723 /* CBLArrayIndexConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = AEC806B62C89EA68001C9723 /* CBLArrayIndexConfiguration.m */; };
AEC806B92C89EA68001C9723 /* CBLArrayIndexConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = AEC806B62C89EA68001C9723 /* CBLArrayIndexConfiguration.m */; };
Expand Down Expand Up @@ -5666,7 +5667,6 @@
};
938CF9ED1E442A3E00291631 = {
CreatedOnToolsVersion = 8.2.1;
DevelopmentTeam = N2Q372V7W2;
ProvisioningStyle = Automatic;
};
938CFA051E442A3E00291631 = {
Expand Down Expand Up @@ -6990,6 +6990,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
AEAFDDD32D2C4B1A00BA5C9C /* CustomLoggerOld.m in Sources */,
93CD018F1E95546200AFB3FA /* ReplicatorTest.m in Sources */,
1AF555D522948BDF0077DF6D /* QueryTest+Main.m in Sources */,
1AA6743A227924110018CC6D /* QueryTest+Join.m in Sources */,
Expand Down Expand Up @@ -7733,6 +7734,8 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 9344A3611E44517B0091F581 /* CBL_ObjC_Tests_iOS_App.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
DEVELOPMENT_TEAM = N2Q372V7W2;
GCC_TREAT_WARNINGS_AS_ERRORS = NO;
HEADER_SEARCH_PATHS = (
"${inherited}",
Expand Down Expand Up @@ -7925,6 +7928,8 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 9344A3611E44517B0091F581 /* CBL_ObjC_Tests_iOS_App.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
DEVELOPMENT_TEAM = N2Q372V7W2;
GCC_TREAT_WARNINGS_AS_ERRORS = NO;
HEADER_SEARCH_PATHS = (
"${inherited}",
Expand Down Expand Up @@ -9289,6 +9294,8 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 9344A3611E44517B0091F581 /* CBL_ObjC_Tests_iOS_App.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
DEVELOPMENT_TEAM = N2Q372V7W2;
GCC_TREAT_WARNINGS_AS_ERRORS = NO;
HEADER_SEARCH_PATHS = (
"${inherited}",
Expand All @@ -9307,6 +9314,8 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 9344A3611E44517B0091F581 /* CBL_ObjC_Tests_iOS_App.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
DEVELOPMENT_TEAM = N2Q372V7W2;
GCC_TREAT_WARNINGS_AS_ERRORS = NO;
HEADER_SEARCH_PATHS = (
"${inherited}",
Expand Down
1 change: 0 additions & 1 deletion Objective-C/Internal/CBLLogSinks+Internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
//

#import "CBLLogSinks.h"
#import "CBLLogTypes.h"
#import "CBLConsoleLogSink.h"
#import "CBLCustomLogSink.h"
#import "CBLFileLogSink.h"
Expand Down
1 change: 0 additions & 1 deletion Objective-C/LogSink/CBLCustomLogSink.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
//

#import "CBLCustomLogSink.h"
#import "CBLLogTypes.h"
#import "CBLLogSinks+Internal.h"

@implementation CBLCustomLogSink
Expand Down
2 changes: 1 addition & 1 deletion Objective-C/Tests/Util/CustomLogger.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//

#import <Foundation/Foundation.h>
#import "CouchbaseLite.h"
#import <CouchbaseLite/CBLLogTypes.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
3 changes: 2 additions & 1 deletion Objective-C/Tests/Util/CustomLoggerOld.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
//

#import <Foundation/Foundation.h>
#import "CouchbaseLite.h"
#import <CouchbaseLite/CBLLogTypes.h>
#import <CouchbaseLite/CBLLogger.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down

0 comments on commit a3963f0

Please sign in to comment.