Skip to content

Commit c0e9a0b

Browse files
author
Tom Berey
committed
Ver:1.0.2--Minor-Updates
1 parent c7011e1 commit c0e9a0b

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ This is a electron application, which means it runs on your system, rather than
136136

137137
### Screenshots
138138

139-
Logginf Sample:
139+
Logging Sample:
140140

141141
![Screenshot#1](https://github.com/tberey/ts-node-electron-aws-s3-app/blob/development/screenshots/local-logs-sample1.png?raw=true)
142142

@@ -162,8 +162,9 @@ Below is the refined and confirmed roadmap, that has been planned for completion
162162

163163
| Version | Date | Changes |
164164
|:---|:---|:---|
165-
| 1.0.0 | 2021-07-10 | <ul><li>Initial Commit.</li><li>Add inital directory structure and files.</li><li>Add Screenshots directory, and images.</li><li>Create and format README.md</li></ul> |
165+
| 1.0.0 | 2021-07-10 | <ul><li>Initial Commit.</li><li>Add initial directory structure and files.</li><li>Add Screenshots directory, and images.</li><li>Create and format README.md</li></ul> |
166166
| 1.0.1 | 2021-07-14 | <ul><li>Replace local SimpleTxtLogger with npm module SimpleTxtLogger.</li><li>Update Electron client script.</li><li>Update README.md</li></ul> |
167+
| 1.0.2 | 2021-08-03 | <ul><li>Fix spelling.</li><li>Update README.md</li></ul> |
167168

168169
<br><hr><br>
169170

@@ -191,7 +192,7 @@ Contributions are welcomed and, of course, **greatly appreciated**.
191192
* [Issues & Requests][issues-url]
192193
* [My Other Projects](https://github.com/tberey?tab=repositories)
193194
* [Personal Website](https://tberey.github.io/)
194-
* [Linked In](https://uk.linkedin.com/in/thomas-berey-2a1860129)
195+
* [Linked In](https://uk.linkedin.com/in/thomas-berey)
195196

196197
<br>
197198

@@ -221,5 +222,5 @@ Contributions are welcomed and, of course, **greatly appreciated**.
221222
[issues-shield]: https://img.shields.io/github/issues/tberey/ts-node-electron-aws-s3-app.svg
222223
[issues-url]: https://github.com/tberey/ts-node-electron-aws-s3-app/issues
223224
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?logo=linkedin&colorB=555
224-
[linkedin-url]: https://uk.linkedin.com/in/thomas-berey-2a1860129
225+
[linkedin-url]: https://uk.linkedin.com/in/thomas-berey
225226
[project-url]: https://github.com/tberey/ts-node-electron-aws-s3-app/projects

src/services/AWSBucket.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class AWSBucket {
1414
private txtLogger: SimpleTxtLogger;
1515
private rollbarLogger: Rollbar;
1616

17-
// Initialise the AWS Connection and Client.
17+
// Initialize the AWS Connection and Client.
1818
constructor(txtLogger: SimpleTxtLogger, rollbarLogger: Rollbar) {
1919
this.txtLogger = txtLogger;
2020
this.rollbarLogger = rollbarLogger;

src/services/Rollbar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class Rollbar {
1717
});
1818

1919
this.rollbarInfo(`Rollbar Successfully Configured with Application: ${appName}.`);
20-
this.txtLogger.writeToLogFile('Initialised Logging: Rollbar Setup.');
20+
this.txtLogger.writeToLogFile('Initialized Logging: Rollbar Setup.');
2121
}
2222

2323
public rollbarInfo(info:Error | string): void {

0 commit comments

Comments
 (0)