Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
309 B

  1. # 1 "/home/admin/SimulationCore2/Simulation/logging.f90"
  2. module logging
  3. integer::log_level=0
  4. contains
  5. subroutine logg(level,message)
  6. integer::level
  7. character(len=*)::message
  8. if(log_level>=level) then
  9. print *,message
  10. endif
  11. end subroutine
  12. end module