utils.go 975B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. Copyright 1999-2017 Alibaba Group Holding Ltd.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. CSB-HTTP-SDK based on GO language.
  13. */
  14. package csbhttp
  15. import "fmt"
  16. /**
  17. 工具相关的方法定义在这个文件中
  18. */
  19. // print debug info
  20. func printDebug(prompt string, a ...interface{}) {
  21. if defaultSetting.ShowDebug {
  22. fmt.Println(prompt, a)
  23. }
  24. }
  25. // merge two maps
  26. func mergeTwoMaps(toMap map[string]string, fromMap map[string]string) {
  27. for k, v := range fromMap {
  28. toMap[k] = v
  29. }
  30. }