mirror of
				https://github.com/samply/bridgehead.git
				synced 2025-11-04 16:30:18 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			100 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			100 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
log() {
 | 
						|
  SEVERITY="$1"
 | 
						|
  shift
 | 
						|
  echo -e "$(date +'%Y-%m-%d %T')" "$SEVERITY:" "$@"
 | 
						|
}
 |