Ignore:
Timestamp:
May 22, 2019 9:52:13 AM (5 years ago)
Author:
kanani
Message:

clean up location, debug and error messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/multi_agent_system_mod.f90

    r3885 r3987  
    2525! -----------------
    2626! $Id$
     27! Introduce alternative switch for debug output during timestepping
     28!
     29! 3885 2019-04-11 11:29:34Z kanani
    2730! Changes related to global restructuring of location messages and introduction
    2831! of additional debug messages
     
    114117    USE control_parameters,                                                    &
    115118        ONLY:  biometeorology,                                                 &
    116                debug_output,                                                   &
    117                debug_string,                                                   &
     119               debug_output_timestep,                                          &
    118120               dt_3d,                                                          &
    119121               dt_write_agent_data,                                            &
     
    396398    LOGICAL       ::  first_loop_stride   !< flag for first loop stride of agent sub-timesteps
    397399    LOGICAL, SAVE ::  first_call = .TRUE. !< first call of mas flag for output
    398 !
    399 !-- Debug location message
    400     IF ( debug_output )  THEN
    401        WRITE( debug_string, * ) 'multi_agent_system'
    402        CALL debug_message( debug_string, 'start' )
    403     ENDIF
     400
     401
     402    IF ( debug_output_timestep )  CALL debug_message( 'multi_agent_system', 'start' )
    404403
    405404    CALL cpu_log( log_point(9), 'mas', 'start' )
     
    622621
    623622    CALL cpu_log( log_point(9), 'mas', 'stop' )
    624 !
    625 !-- Debug location message
    626     IF ( debug_output )  THEN
    627        WRITE( debug_string, * ) 'multi_agent_system'
    628        CALL debug_message( debug_string, 'end' )
    629     ENDIF
     623
     624    IF ( debug_output_timestep )  CALL debug_message( 'multi_agent_system', 'end' )
     625
    630626
    631627 END SUBROUTINE multi_agent_system
Note: See TracChangeset for help on using the changeset viewer.