improve logging
This commit is contained in:
parent
81c0780271
commit
05d130893c
2 changed files with 8 additions and 2 deletions
|
@ -391,7 +391,7 @@ export default function Uploader(props: Props) {
|
|||
) => {
|
||||
try {
|
||||
addLogLine(
|
||||
`upload file to an existing collection - "${collection.name}"`
|
||||
`upload file to an existing collection name:${collection.name}, collectionID:${collection.id}`
|
||||
);
|
||||
await preCollectionCreationAction();
|
||||
const filesWithCollectionToUpload: FileWithCollection[] =
|
||||
|
|
|
@ -52,6 +52,7 @@ import {
|
|||
} from 'utils/export';
|
||||
import exportService from 'services/export';
|
||||
import { CollectionDownloadProgressAttributes } from 'components/Collections/CollectionDownloadProgress';
|
||||
import { addLogLine } from '@ente/shared/logging';
|
||||
|
||||
export enum COLLECTION_OPS_TYPE {
|
||||
ADD,
|
||||
|
@ -611,8 +612,13 @@ export const getOrCreateAlbum = async (
|
|||
}
|
||||
for (const collection of existingCollections) {
|
||||
if (isValidReplacementAlbum(collection, user, albumName)) {
|
||||
addLogLine(
|
||||
`Found existing album ${albumName} with id ${collection.id}`
|
||||
);
|
||||
return collection;
|
||||
}
|
||||
}
|
||||
return createAlbum(albumName);
|
||||
const album = await createAlbum(albumName);
|
||||
addLogLine(`Created new album ${albumName} with id ${album.id}`);
|
||||
return album;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue