[Debug log level] Print validation build result failure#17423
Merged
Conversation
Contributor
Greptile OverviewGreptile SummaryAdded debug logging to output the full validation build result when migration validation fails. The log uses
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client
participant Service as WorkspaceMigrationValidateBuildAndRunService
participant Orchestrator as WorkspaceMigrationBuildOrchestratorService
participant Logger
Client->>Service: validateBuildAndRunWorkspaceMigrationFromTo(args)
Service->>Orchestrator: buildWorkspaceMigration(args)
alt Build Validation Fails
Orchestrator-->>Service: {status: 'fail', report: {...}}
Service->>Logger: debug(JSON.stringify(validateAndBuildResult))
Note over Logger: NEW: Logs detailed failure report for debugging
Service-->>Client: return validateAndBuildResult
else Build Validation Succeeds
Orchestrator-->>Service: {status: 'success', workspaceMigration: {...}}
alt Empty migration
Service-->>Client: return undefined
else Has migration actions
Service->>Service: workspaceMigrationRunnerService.run(...)
Service-->>Client: return undefined
end
end
|
prastoin
commented
Jan 25, 2026
...e-manager/workspace-migration/services/workspace-migration-validate-build-and-run-service.ts
Outdated
Show resolved
Hide resolved
FelixMalfait
approved these changes
Jan 25, 2026
Contributor
|
🚀 Preview Environment Ready! Your preview environment is available at: http://bore.pub:24653 This environment will automatically shut down when the PR is closed or after 5 hours. |
prastoin
added a commit
that referenced
this pull request
Jan 25, 2026
# Introduction As per title, in order to ease debug Motivation #17413 (comment)
abdulrahmancodes
pushed a commit
that referenced
this pull request
Jan 26, 2026
# Introduction As per title, in order to ease debug Motivation #17413 (comment)
camilo-agudelo-uma
pushed a commit
to innovation-grupo-uma/twenty-uma
that referenced
this pull request
Feb 2, 2026
…7423) # Introduction As per title, in order to ease debug Motivation twentyhq#17413 (comment)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduction
As per title, in order to ease debug
Motivation #17413 (comment)