blob: c7963958e568268e7c7581d4aa191cedad514dc4 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/developer/forensics/feedback_data/system_log_recorder/encoding/identity_decoder.h"
#include "src/lib/fsl/vmo/strings.h"
namespace forensics {
namespace feedback_data {
namespace system_log_recorder {
std::string IdentityDecoder::Decode(const fsl::SizedVmo& vmo) {
std::string output;
fsl::StringFromVmo(vmo, &output);
return output;
}
} // namespace system_log_recorder
} // namespace feedback_data
} // namespace forensics