mirror of
				https://github.com/edgelesssys/constellation.git
				synced 2025-10-30 19:28:59 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			431 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright (c) Edgeless Systems GmbH
 | |
| 
 | |
| SPDX-License-Identifier: AGPL-3.0-only
 | |
| */
 | |
| 
 | |
| package aws
 | |
| 
 | |
| // TODO: Implement for AWS.
 | |
| 
 | |
| // Logger is a Cloud Logger for AWS.
 | |
| type Logger struct{}
 | |
| 
 | |
| // NewLogger creates a new Cloud Logger for AWS.
 | |
| func NewLogger() *Logger {
 | |
| 	return &Logger{}
 | |
| }
 | |
| 
 | |
| // Disclose is not implemented for AWS.
 | |
| func (l *Logger) Disclose(msg string) {}
 | |
| 
 | |
| // Close is a no-op.
 | |
| func (l *Logger) Close() error {
 | |
| 	return nil
 | |
| }
 | 
