Question: Which choice does _not_ send output to standard error?

  1. println(message)
  2. log.New(os.Stderr, "", 0).Println(message)
  3. fmt.Errorf("%s\n", message)
  4. fmt.Fprintln(os.Stderr, message)

Answer: The correct answer of the above question is Option A:println(message)