Go to the source code of this file.
◆ NoteVerificationStage()
static void NoteVerificationStage |
( |
NSString * | displayName, |
|
|
NSString * | stage ) |
|
static |
◆ OpenLogFile()
static void OpenLogFile |
( |
NSString * | name | ) |
|
|
static |
Definition at line 727 of file OOOXPVerifier.m.
728{
729
730
731 if ([[NSUserDefaults standardUserDefaults] oo_boolForKey:@"oxp-verifier-open-log" defaultValue:YES])
732 {
733#if OOLITE_MAC_OS_X
734 [[NSWorkspace sharedWorkspace] openFile:OOLogHandlerGetLogPath()];
735#elif OOLITE_WINDOWS
736
737 system([[NSString stringWithFormat:@"write \"Logs\\%@.log\"", name] UTF8String]);
738#elif OOLITE_LINUX
739
740
741
742
743
744
746#else
747 do {} while (0);
748#endif
749 }
750}
NSString * OOLogHandlerGetLogPath(void)
◆ SwitchLogFile()
static void SwitchLogFile |
( |
NSString * | name | ) |
|
|
static |
Definition at line 708 of file OOOXPVerifier.m.
709{
710
711 name = [name stringByAppendingPathExtension:@"log"];
712 OOLog(
@"verifyOXP.switchingLog",
@"Switching log files -- logging to \"%@\
".", name);
714
715
716
717
718}
void OOLogOutputHandlerChangeLogFile(NSString *newLogName)
#define OOLog(class, format,...)
References OOLog, and OOLogOutputHandlerChangeLogFile().