Skip to content

Commit

Permalink
Cherry pick PR #1859: Fix typo in log statements: Crashapd -> Crashpad (
Browse files Browse the repository at this point in the history
#1915)

Refer to the original PR: #1859

b/306218562

Change-Id: Id5fa3d725d7a180ef7221a5b460c1b29cf505a02

Co-authored-by: Holden Warriner <[email protected]>
  • Loading branch information
cobalt-github-releaser-bot and hlwarriner committed Nov 6, 2023
1 parent 25ca7bf commit 932032c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion starboard/elf_loader/sandbox.cc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void LoadLibraryAndInitialize(const std::string& library_path,
GetEvergreenInfo(&evergreen_info);
if (!third_party::crashpad::wrapper::AddEvergreenInfoToCrashpad(
evergreen_info)) {
SB_LOG(ERROR) << "Could not send Cobalt library information into Crashapd.";
SB_LOG(ERROR) << "Could not send Cobalt library information into Crashpad.";
} else {
SB_LOG(INFO) << "Loaded Cobalt library information into Crashpad.";
}
Expand Down
2 changes: 1 addition & 1 deletion starboard/loader_app/loader_app.cc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void LoadLibraryAndInitialize(const std::string& alternative_content_path,
GetEvergreenInfo(&evergreen_info);
if (!third_party::crashpad::wrapper::AddEvergreenInfoToCrashpad(
evergreen_info)) {
SB_LOG(ERROR) << "Could not send Cobalt library information into Crashapd.";
SB_LOG(ERROR) << "Could not send Cobalt library information into Crashpad.";
} else {
SB_LOG(INFO) << "Loaded Cobalt library information into Crashpad.";
}
Expand Down
2 changes: 1 addition & 1 deletion starboard/loader_app/slot_management.cc
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ void* LoadSlotManagedLibrary(const std::string& app_key,
if (!third_party::crashpad::wrapper::AddEvergreenInfoToCrashpad(
evergreen_info)) {
SB_LOG(ERROR)
<< "Could not send Cobalt library information into Crashapd.";
<< "Could not send Cobalt library information into Crashpad.";
} else {
SB_LOG(INFO) << "Loaded Cobalt library information into Crashpad.";
}
Expand Down

0 comments on commit 932032c

Please sign in to comment.