File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -248,6 +248,7 @@ async fn main() -> anyhow::Result<()> {
248248 stderrlog:: new ( )
249249 . module ( module_path ! ( ) )
250250 . module ( "pmrdb" )
251+ . module ( "pmrtqs" )
251252 . verbosity ( ( args. verbose as usize ) + 1 )
252253 . timestamp ( stderrlog:: Timestamp :: Second )
253254 . init ( )
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ impl<'a> TMPlatformExecutorInstance<'a> {
3232 }
3333
3434 pub async fn execute ( & mut self ) -> Result < ( i32 , bool ) , RunnerError > {
35- let mut command: Command = ( & self . task ) . try_into ( ) ?;
35+ let mut command = Command :: try_from ( & self . task ) ?;
36+ log:: trace!( "task id {} will run: {command:?}" , self . task. id( ) ) ;
3637 let basedir = command. get_current_dir ( )
3738 . ok_or ( ValueError :: UninitializedAttribute ( "task missing basedir" ) ) ?;
3839
You can’t perform that action at this time.
0 commit comments