Documentation ¶
Overview ¶
* Copyright 2023 Caio Matheus Marcatti Calimério * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
* Copyright 2023 Caio Matheus Marcatti Calimério * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
* Copyright 2023 Caio Matheus Marcatti Calimério * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
Index ¶
- type Fields
- type ILog
- type Logger
- func (l *Logger) Debug(message string, args ...interface{})
- func (l *Logger) Debugf(message string, args ...interface{})
- func (l *Logger) Error(message string, args ...interface{})
- func (l *Logger) Errorf(message string, args ...interface{})
- func (l *Logger) Fatal(message string, args ...interface{})
- func (l *Logger) Fatalf(message string, args ...interface{})
- func (l *Logger) Info(message string, args ...interface{})
- func (l *Logger) Infof(message string, args ...interface{})
- func (l *Logger) Warning(message string, args ...interface{})
- func (l *Logger) Warningf(message string, args ...interface{})
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ILog ¶
type ILog interface { Fatal(message string, args ...interface{}) Debug(message string, args ...interface{}) Info(message string, args ...interface{}) Error(message string, args ...interface{}) Warning(message string, args ...interface{}) Fatalf(message string, args ...interface{}) Debugf(message string, args ...interface{}) Infof(message string, args ...interface{}) Errorf(message string, args ...interface{}) Warningf(message string, args ...interface{}) }