PageRenderTime 56ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/MalApi/Logging.cs

https://bitbucket.org/LHCGreg/mal-api
C# | 30 lines | 13 code | 2 blank | 15 comment | 0 complexity | c81a17c8786e5152471e4ce5569c0f4a MD5 | raw file
Possible License(s): Apache-2.0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Common.Logging;
  6. using Common.Logging.Simple;
  7. namespace MalApi
  8. {
  9. internal static class Logging
  10. {
  11. internal static ILog Log { get { return Common.Logging.LogManager.GetLogger("MAL API"); } }
  12. }
  13. }
  14. /*
  15. Copyright 2011 Greg Najda
  16. Licensed under the Apache License, Version 2.0 (the "License");
  17. you may not use this file except in compliance with the License.
  18. You may obtain a copy of the License at
  19. http://www.apache.org/licenses/LICENSE-2.0
  20. Unless required by applicable law or agreed to in writing, software
  21. distributed under the License is distributed on an "AS IS" BASIS,
  22. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  23. See the License for the specific language governing permissions and
  24. limitations under the License.
  25. */