@@ -350,8 +350,6 @@ func (s *ApiService) TypeText(ctx context.Context, request oapi.TypeTextRequestO
350350 // Use "--" to terminate options and pass raw text
351351 args = append (args , "--" , body .Text )
352352
353- log .Info ("executing xdotool" , "args" , args )
354-
355353 output , err := defaultXdoTool .Run (ctx , args ... )
356354 if err != nil {
357355 log .Error ("xdotool command failed" , "err" , err , "output" , string (output ))
@@ -465,7 +463,6 @@ func (s *ApiService) PressKey(ctx context.Context, request oapi.PressKeyRequestO
465463 argsDown = append (argsDown , "keydown" , key )
466464 }
467465
468- log .Info ("executing xdotool (keydown phase)" , "args" , argsDown )
469466 if output , err := defaultXdoTool .Run (ctx , argsDown ... ); err != nil {
470467 log .Error ("xdotool keydown failed" , "err" , err , "output" , string (output ))
471468 // Best-effort release any keys that may be down (primary and modifiers)
@@ -497,7 +494,6 @@ func (s *ApiService) PressKey(ctx context.Context, request oapi.PressKeyRequestO
497494 }
498495 }
499496
500- log .Info ("executing xdotool (keyup phase)" , "args" , argsUp )
501497 if output , err := defaultXdoTool .Run (ctx , argsUp ... ); err != nil {
502498 log .Error ("xdotool keyup failed" , "err" , err , "output" , string (output ))
503499 return oapi.PressKey500JSONResponse {InternalErrorJSONResponse : oapi.InternalErrorJSONResponse {
@@ -524,7 +520,6 @@ func (s *ApiService) PressKey(ctx context.Context, request oapi.PressKeyRequestO
524520 }
525521 }
526522
527- log .Info ("executing xdotool" , "args" , args )
528523 output , err := defaultXdoTool .Run (ctx , args ... )
529524 if err != nil {
530525 log .Error ("xdotool command failed" , "err" , err , "output" , string (output ))
0 commit comments