| Index: base/command_line.cc
|
| diff --git a/base/command_line.cc b/base/command_line.cc
|
| index c2ce33db5d20801c525603fab0b91a5b93717ba2..9ade782d81f7e0d96fedd08ffeed08bbae5b224f 100644
|
| --- a/base/command_line.cc
|
| +++ b/base/command_line.cc
|
| @@ -72,10 +72,12 @@ bool IsSwitch(const CommandLine::StringType& string,
|
| // Append switches and arguments, keeping switches before arguments.
|
| void AppendSwitchesAndArguments(CommandLine* command_line,
|
| const CommandLine::StringVector& argv) {
|
| + LOG(ERROR) << "auraclank: CommandLine::AppendArguments:";
|
| bool parse_switches = true;
|
| for (size_t i = 1; i < argv.size(); ++i) {
|
| CommandLine::StringType arg = argv[i];
|
| TrimWhitespace(arg, TRIM_ALL, &arg);
|
| + LOG(ERROR) << arg;
|
|
|
| CommandLine::StringType switch_string;
|
| CommandLine::StringType switch_value;
|
|
|