]> git.saurik.com Git - apple/security.git/blobdiff - OSX/libsecurity_utilities/lib/daemon.cpp
Security-58286.20.16.tar.gz
[apple/security.git] / OSX / libsecurity_utilities / lib / daemon.cpp
index fc8c15e40f5ffa9e3f246dac872087644488cfcf..f06ced9842773ce5b6d9064b6dde7c65a5207b38 100644 (file)
@@ -94,12 +94,12 @@ bool executeSelf(char **argv)
 {
        static const char reExecEnv[] = "_RE_EXECUTE";
        if (getenv(reExecEnv)) {                // was re-executed
-               secdebug("daemon", "self-execution complete");
+               secinfo("daemon", "self-execution complete");
                unsetenv(reExecEnv);
                return true;
        } else {
                setenv(reExecEnv, "go", 1);
-               secdebug("daemon", "self-executing (ouch!)");
+               secinfo("daemon", "self-executing (ouch!)");
                execv(argv[0], argv);
                perror("re-execution");
                Syslog::error("Re-execution attempt failed");