Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1659)

Unified Diff: net/spdy/fuzzing/hpack_example_generator.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/spdy/fuzzing/hpack_example_generator.cc
diff --git a/net/spdy/fuzzing/hpack_example_generator.cc b/net/spdy/fuzzing/hpack_example_generator.cc
index e73681bf40010b9973d1bb76f8d9379c53550ec1..4780db1f11d9f53911ec965923537837498bd27d 100644
--- a/net/spdy/fuzzing/hpack_example_generator.cc
+++ b/net/spdy/fuzzing/hpack_example_generator.cc
@@ -52,7 +52,7 @@ int main(int argc, char** argv) {
DVLOG(1) << "Writing output to " << file_to_write;
base::File file_out(base::FilePath::FromUTF8Unsafe(file_to_write),
base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
- CHECK(file_out.IsValid()) << file_out.error_details();
+ CHECK(file_out.IsValid());
HpackFuzzUtil::GeneratorContext context;
HpackFuzzUtil::InitializeGeneratorContext(&context);

Powered by Google App Engine
This is Rietveld 408576698