This commit is contained in:
2018-12-14 20:12:23 +00:00
parent 03178a5bb5
commit 3663e96cd1
2 changed files with 8 additions and 3 deletions

View File

@@ -9,6 +9,11 @@ Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOiIxNTQ0NTU5NzAwIiwiZXhwIjoi
-----------------------
TODO CLIENT STUFF
- Validate time zone offset is accurate: it should validate the time zone offset when the client software starts and if it's found to be off what was set offer to change it automatically
- This way it works client to client and will handle DST changes almost automatically
- LIST
- Overall list menu toolbar at top with following icons:
- Add new item
@@ -70,9 +75,8 @@ TODO CLIENT STUFF
TODO SERVER STUFF
- LOG File names, when logs are rotated, I'm seeing the number 18 and 17 in the devops log file rotated names?! Shouldn't it just be 1 to 3 or something, will that number keep growing infinitely?
- Client item actually: it should validate the time zone offset when the client software starts and if it's found to be off what was set offer to change it automatically
- This way it works client to client and will handle DST changes almost automatically
- Trial route needs in xml comments for route to add the timezone info parameter so it shows in the api explorer as well as the current trial size
- Seeding huge 500 techs doesn't break the trial license which is for 100 techs, need some tech checks all over and also up the trial license to the max possible seeded techs

View File

@@ -84,6 +84,7 @@ namespace AyaNova
fileTarget.FileName = Path.Combine(ServerBootConfig.AYANOVA_LOG_PATH, "log-ayanova.txt");
fileTarget.Layout = "${longdate}|${uppercase:${level}}|${logger}|${message:exceptionSeparator==>:withException=true}";
fileTarget.ArchiveFileName = Path.Combine(ServerBootConfig.AYANOVA_LOG_PATH, "log-ayanova-{#}.txt");
fileTarget.ArchiveNumbering = ArchiveNumberingMode.Date;
fileTarget.ArchiveEvery = FileArchivePeriod.Wednesday;
fileTarget.MaxArchiveFiles = 3;