aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/FLXPostgresConnection.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-08 09:44:25 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-08 09:44:25 +0000
commit66f9f09721647b635e4095c865653b8008c9552e (patch)
tree549d2984e239533df909225c7c454bee1cc3319b /Frameworks/PostgresKit/Source/FLXPostgresConnection.m
parent3164c029b4c87cf65a8a7f21a85e95b960806b59 (diff)
downloadsequelpro-66f9f09721647b635e4095c865653b8008c9552e.tar.gz
sequelpro-66f9f09721647b635e4095c865653b8008c9552e.tar.bz2
sequelpro-66f9f09721647b635e4095c865653b8008c9552e.zip
Revert logging changes.
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnection.m')
-rw-r--r--Frameworks/PostgresKit/Source/FLXPostgresConnection.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m
index de484802..d5d06c0f 100644
--- a/Frameworks/PostgresKit/Source/FLXPostgresConnection.m
+++ b/Frameworks/PostgresKit/Source/FLXPostgresConnection.m
@@ -336,7 +336,7 @@ static void _FLXPostgresConnectionNoticeProcessor(void *arg, const char *message
// Register type extensions
if (PQinitTypes(_connection)) {
- _log(@"Failed initialise type extensions. Connection might return unexpected results!");
+ NSLog(@"PostgresKit: Warning: Failed initialise type extensions. Connection might return unexpected results!");
}
[self _loadDatabaseParameters];
@@ -360,7 +360,7 @@ static void _FLXPostgresConnectionNoticeProcessor(void *arg, const char *message
BOOL success = [_parameters loadParameters];
- if (!success) _log(@"PostgresKit: Warning: Failed to load database parameters.");
+ if (!success) NSLog(@"PostgresKit: Warning: Failed to load database parameters.");
}
/**