Skip to content

Commit

Permalink
Update PackagerImplementation.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiva367 authored Jan 20, 2025
1 parent 43823d5 commit b6eb3ea
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Packager/PackagerImplementation.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ namespace Plugin {
, _isUpgrade(false)
, _isSyncing(false)
{
LOGINFO("DBG Ctor \n");
}

~PackagerImplementation() override;
Expand All @@ -105,6 +106,7 @@ namespace Plugin {
: SystemRootPath()
{
Add(_T("systemrootpath"), &SystemRootPath);
LOGINFO("DBG Ctor\n");
}

Core::JSON::String SystemRootPath;
Expand Down Expand Up @@ -142,6 +144,7 @@ namespace Plugin {
, _version(version)
, _arch(arch)
{
LOGINFO("DBG CTor\n");
}

BEGIN_INTERFACE_MAP(PackageInfo)
Expand Down Expand Up @@ -213,13 +216,13 @@ namespace Plugin {

void SetState(Exchange::IPackager::state state)
{
TRACE_L1("Setting state to %d", state);
LOGINFO("DBG Setting state to %d", state);
_state = state;
}

void SetProgress(uint8_t progress)
{
TRACE_L1("Setting progress to %d", progress);
LOGINFO("DBG Setting progress to %d", progress);
_progress = progress;
}

Expand All @@ -232,7 +235,7 @@ namespace Plugin {

void SetError(uint32_t err)
{
TRACE_L1("Setting error to %d", err);
LOGINFO("DBG Setting error to %d", err);
_error = err;
}

Expand Down

0 comments on commit b6eb3ea

Please sign in to comment.