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

llama.common.illamalogger.md 616 B

123456789101112131415161718192021222324252627282930
  1. # ILLamaLogger
  2. Namespace: LLama.Common
  3. receives log messages from LLamaSharp
  4. ```csharp
  5. public interface ILLamaLogger
  6. ```
  7. ## Methods
  8. ### **Log(String, String, LogLevel)**
  9. Write the log in customized way
  10. ```csharp
  11. void Log(string source, string message, LogLevel level)
  12. ```
  13. #### Parameters
  14. `source` [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  15. The source of the log. It may be a method name or class name.
  16. `message` [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)<br>
  17. The message.
  18. `level` [LogLevel](./llama.common.illamalogger.loglevel.md)<br>
  19. The log level.