Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit 3b39ff5

Browse files
committed
tracing, utility: improve language slightly on examples
1 parent ca91bc0 commit 3b39ff5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

projects/dogen.tracing/src/types/file_backend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ file_backend::full_path_for_writing(const std::string& transform_id,
195195
const auto r(current_directory_ / s.str());
196196
BOOST_LOG_SEV(lg, debug) << "Computed full path for writing: "
197197
<< r.generic_string()
198-
<< " CRAP: " << model_id;
198+
<< " ID: " << model_id;
199199
return r;
200200
}
201201

projects/dogen.utility/tests/sha1_hasher_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ BOOST_AUTO_TEST_CASE(computing_the_hash_of_a_trivial_non_empty_string_produces_t
6565
BOOST_AUTO_TEST_CASE(computing_the_hash_of_an_empty_string_produces_the_exepcted_result) {
6666
SETUP_TEST_LOG_SOURCE("computing_the_hash_of_an_empty_string_produces_the_exepcted_result");
6767

68-
// $ touch crap.log && sha1sum crap.log
68+
// $ touch file.log && sha1sum file.log
6969
// 1f45006cda88569c1d44559db1aef695b30d8817 -
7070
BOOST_LOG_SEV(lg, info) << "input: '" << empty << "'";
7171
const auto actual(sha1_hasher(empty));
@@ -75,7 +75,7 @@ BOOST_AUTO_TEST_CASE(computing_the_hash_of_an_empty_string_produces_the_exepcted
7575
BOOST_AUTO_TEST_CASE(computing_the_hash_of_a_multi_line_string_produces_the_exepcted_result) {
7676
SETUP_TEST_LOG_SOURCE("computing_the_hash_of_a_multi_line_string_produces_the_exepcted_result");
7777

78-
// $ touch crap.log && sha1sum crap.log
78+
// $ touch file.log && sha1sum file.log
7979
// 1f45006cda88569c1d44559db1aef695b30d8817 -
8080
BOOST_LOG_SEV(lg, info) << "input: '" << multi_line_input << "'";
8181
const auto actual(sha1_hasher(multi_line_input));

0 commit comments

Comments
 (0)