ObsConfig.php 783 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Copyright 2019 Huawei Technologies Co.,Ltd.
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not use
  5. * this file except in compliance with the License. You may obtain a copy of the
  6. * License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software distributed
  11. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  12. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  13. * specific language governing permissions and limitations under the License.
  14. *
  15. */
  16. namespace Obs\Log;
  17. class ObsConfig
  18. {
  19. const LOG_FILE_CONFIG = [
  20. 'FilePath'=>'./logs',
  21. 'FileName'=>'eSDK-OBS-PHP.log',
  22. 'MaxFiles'=>10,
  23. 'Level'=>INFO
  24. ];
  25. }