* Tools/SOGoToolUserPreferences.m:

use printf() instead of NSLog to print out user preferences.
    Makes it easier to grep.

Monotone-Parent: 3896b9b187dfad2b01d68527f0411bd1a7cfe7b4
Monotone-Revision: f0fb54908898753faba576cb702431e4a761d814

Monotone-Author: jraby@inverse.ca
Monotone-Date: 2012-07-09T18:16:49
This commit is contained in:
Jean Raby
2012-07-09 18:16:49 +00:00
parent 1b6727bda6
commit a6a00d8753
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,5 +1,9 @@
2012-07-09 Jean Raby <jraby@inverse.ca>
* Tools/SOGoToolUserPreferences.m:
use printf() instead of NSLog to print out user preferences.
Makes it easier to grep.
* UI/WebServerResources/generic.js (onSearchFormSubmit):
Restore behavior of a single dot (.) in the search field (wildcard search)
+1 -1
View File
@@ -161,7 +161,7 @@ typedef enum
o = [source objectForKey: key];
if (o)
NSLog(@"value for key \"%@\": %@", key, [o jsonRepresentation]);
printf("%s: %s\n", [key UTF8String], [[o jsonRepresentation] UTF8String]);
else
NSLog(@"Value for key \"%@\" not found in %@", key, type);