Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement dsl_sink_message_payload_debug_dir_get/set services to dump Message Converter payloads. #1199

Closed
rjhowell44 opened this issue Apr 29, 2024 · 1 comment
Assignees
Milestone

Comments

@rjhowell44
Copy link
Collaborator

rjhowell44 commented Apr 29, 2024

New services for the IoT Message Sink

/**
 * @brief Get the current payload dumping/debugging directory for the named 
 * Message Sink. Null string indicates that payload dumping is disabled. 
 * @param[in] name unique name of the Message Sink to query.
 * @param[out] debug_dir absolute or relative path to the directory to
 * to dump payload data.
 */
DslReturnType dsl_sink_message_payload_debug_dir_get(const wchar_t* name, 
    const wchar_t** debug_dir);

/**
 * @brief Enables payload dumping/debugging for the named Message Sink.
 * @param[in] name unique name of the Message Sink to update.
 * @param[in] debug_dir absolute or relative path to the directory to
 * to dump payload data.
 */
DslReturnType dsl_sink_message_payload_debug_dir_set(const wchar_t* name, 
    const wchar_t* debug_dir);
@rjhowell44 rjhowell44 self-assigned this Apr 29, 2024
@rjhowell44 rjhowell44 added this to the v0.30.alpha milestone Apr 29, 2024
@rjhowell44
Copy link
Collaborator Author

Merged into the v0.30.alpha dev branch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant