diff options
author | Simon Rettberg | 2019-05-14 10:34:25 +0200 |
---|---|---|
committer | Simon Rettberg | 2019-05-14 10:34:25 +0200 |
commit | de14653078a6cc5a57a643b1361ba8b97fe674fc (patch) | |
tree | bd97dda84188c3dd5fa0f72ce1689c93007bdb18 | |
parent | Retry loginctl show-session (diff) | |
download | idle-daemon-de14653078a6cc5a57a643b1361ba8b97fe674fc.tar.gz idle-daemon-de14653078a6cc5a57a643b1361ba8b97fe674fc.tar.xz idle-daemon-de14653078a6cc5a57a643b1361ba8b97fe674fc.zip |
Less debug spam
-rw-r--r-- | src/main.c | 4 | ||||
-rw-r--r-- | src/util.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -120,7 +120,7 @@ int main( int argc, char **argv ) if ( screen.lockTimestamp == 0 && ( NOW - usr->lockTime ) > 4 ) { // Session is not locked, unconditionally update timestamp if ( usr->lockTime != 0 ) { - printf( "%s #### Session got unlocked.\n", usr->display ); + //printf( "%s #### Session got unlocked.\n", usr->display ); } usr->lockTime = 0; usr->lockTimeOffset = 0; @@ -128,7 +128,7 @@ int main( int argc, char **argv ) usr->lastActivityOffset = 0; } else if ( screen.lockTimestamp - usr->lockTime > 10 ) { // Allow for slight offset in case we manually set this // Session is locked - printf( "%s #### Session got externally locked.\n", usr->display ); + //printf( "%s #### Session got externally locked.\n", usr->display ); usr->lockTime = screen.lockTimestamp; usr->lockTimeOffset = 0; if ( usr->lastActivity == 0 || usr->lockTime != 0 ) { @@ -174,11 +174,13 @@ void run( bool detach, const char *file, ... ) argv[i] = strdup( argv[i] ); } va_end( ap ); + /* printf( "Running: '%s'", file ); for ( int i = 0; i < 100 && argv[i] != NULL; ++i ) { printf( " '%s'", argv[i] ); } printf( "\n" ); + */ execvp( strdup( file ), argv ); // Something went wrong... perror( "run execvp failed" ); |